Re: Directory info?
- Posted by ne1uno Sep 21, 2008
- 1028 views
DerekParnell said...
ne1uno said...
GetDiskFreeSpace has a problem with disks bigger than 2gig,
That problem only occurs on ancient Windows systems (Win 95/98/ME) which are also unlikely to have large drives.
Should be
aFreeBytesAvailableToCaller = allocate(8) aTotalNumberOfBytes = allocate(8) aTotalNumberOfFreeBytes = allocate(8)
good catch, I knew it was pointing to 8 bytes but wrongly assumed it was 8 bytes windows maintains.