in reply to Get the available space in a partition using as input a directory?
You missed this bit from the OP:
This would have to work on Linux, Mac and Windows (my emphasis)
Neither stat nor statvfs work on Windows.
Here's a kludge to get the available space on your current Windows drive:
my $free = ( split ' ', qx{ dir|find "bytes free" } )[2]; $free =~ s/\D//g;
But that is Perl 5. I don't know if Perl 4 even provides a way to make a system call to Windows...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Get the available space in a partition using as input a directory?
by choroba (Cardinal) on Jul 12, 2013 at 19:16 UTC | |
by Not_a_Number (Prior) on Jul 12, 2013 at 19:38 UTC |