Re: [racket-users] Re: What is the fastest way to find the total free space on the disk?

2016-11-13 Thread WarGrey Gyoudmon Ju
I have written one in my project this task varies both from OS and filesystem. https://github.com/digital-world/sakuyamon/blob/master/digitama/posix.c It works on Solaris/Linux/MacOSX, and collects more sysinfo metrics than just disk usage. `ffi_prefab_ksysinfo` is the main struct, and

Re: [racket-users] Re: What is the fastest way to find the total free space on the disk?

2016-11-03 Thread David Storrs
On Thu, Nov 3, 2016 at 12:58 PM, Ethan Estrada wrote: > On Wednesday, November 2, 2016 at 12:20:12 PM UTC-6, David K. Storrs wrote: > > I've been looking through the docs for how to check available disk > space. I looked in the filesystem and os libraries and I threw

[racket-users] Re: What is the fastest way to find the total free space on the disk?

2016-11-03 Thread Ethan Estrada
On Wednesday, November 2, 2016 at 12:20:12 PM UTC-6, David K. Storrs wrote: > I've been looking through the docs for how to check available disk space.  I > looked in the  filesystem and os libraries and I threw keywords at the search > tool, but I can't find an answer. > > I'm looking for the