Disk Free Space (Re: Who Wants to Be a Scripting Guy?)

See the "filesystem" package on the RAA for an actual C extension.
Doesn't support Windows yet, though. It's on the "TODO" list for the
Win32Utils project.

Dan

This communication is the property of Qwest and may contain confidential or
privileged information. Unauthorized use of this communication is strictly
prohibited and may be unlawful. If you have received this communication
in error, please immediately notify the sender by reply e-mail and destroy
all copies of the communication and any attachments.

ยทยทยท

-----Original Message-----
From: Dave Burt [mailto:dave@burt.id.au]
Sent: Friday, May 19, 2006 12:50 AM
To: ruby-talk ML
Subject: Re: Disk Free Space (Re: Who Wants to Be a Scripting Guy?)

Dave Burt wrote:
> `df -k #{dir}`[/\n.{20} (\d+)/, 1].to_i

should be
        `df -k #{dir}`[/\n.{20} (\d+)/, 1].to_i * 1024

Cheers,
Dave