| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
|
| |
According to https://github.com/redneb/disk-free-space/issues/3 ,
disk-free-space should be at least as portable as my homegrown code was.
One change I noticed is, getDiskSize was not implemented for windows
in the old code, and should work now.
|
| |
|
|
|
|
|
| |
Omitted a couple of files what have had significant contributions from
others.
|
|
|
|
| |
Couldn't find anything that exposed this for Windows.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
There's a minor performance overhead to doing this, but this way I don't
have to worry about a situation where statfs might block for a long time.
For example, when it's on a network filesystem.
|
| |
|
| |
|
| |
|
|
Moving the portability handling into a small C library cleans up things
a lot, avoiding the pain of unpacking structs from inside haskell code.
|