i've finally had a chance to look at this... sorry for the delay...
On 01/13/15, ignatius said the following...
On a related note, what is a good substitute for the "diskfree" function under Linux? I believe this may be the root of my problems.
i don't think this is your problem... try this little command line program from the FPC help when i hunted down the diskfree routine to find out what unit it was stored in... if the four default drives don't cover everything needed on one's *nix box, there's an addfile routine to add them with their own id number... this because *nix references drives as files and the diskfree
routine (along with others) want a drive id byte... so anyway, here's the code... give it a try... simple command line program...
program diskfree_test;
uses
sysutils;
begin
write ('Size of current disk : ',DiskSize(0));
writeln (' (= ',DiskSize(0) div 1024,'k)');
write ('Free space of current disk : ',DiskFree(0));
writeln (' (= ',DiskFree(0) div 1024,'k)');
end.
typos are mine as i couldn't figure out how to get netrunner to let me put it in the upload queue and i can't simply import it since i'm on another bbs
than one of the ones i have access to locally...
--- Mystic BBS v1.10 A59 (Linux)
* Origin: Cyberia BBS | Cyberia.Darktech.Org | Kingwood, TX