123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by the Free Pascal development team
- Disk functions from Delphi's sysutils.pas
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- function GetDiskFreeSpace(drive:pchar;var sector_cluster,bytes_sector,
- freeclusters,totalclusters:longint):longbool;
- external 'kernel32' name 'GetDiskFreeSpaceA';
- function diskfree(drive : byte) : longint;
- var
- disk : array[1..4] of char;
- secs,bytes,
- free,total : longint;
- begin
- if drive=0 then
- begin
- disk[1]:='\';
- disk[2]:=#0;
- end
- else
- begin
- disk[1]:=chr(drive+64);
- disk[2]:=':';
- disk[3]:='\';
- disk[4]:=#0;
- end;
- if GetDiskFreeSpace(@disk,secs,bytes,free,total) then
- result:=free*secs*bytes
- else
- result:=-1;
- end;
- function disksize(drive : byte) : longint;
- var
- disk : array[1..4] of char;
- secs,bytes,
- free,total : longint;
- begin
- if drive=0 then
- begin
- disk[1]:='\';
- disk[2]:=#0;
- end
- else
- begin
- disk[1]:=chr(drive+64);
- disk[2]:=':';
- disk[3]:='\';
- disk[4]:=#0;
- end;
- if GetDiskFreeSpace(@disk,secs,bytes,free,total) then
- result:=total*secs*bytes
- else
- result:=-1;
- end;
- Function GetCurrentDir : String;
- begin
- GetDir(0, result);
- end;
- Function SetCurrentDir (Const NewDir : String) : Boolean;
- begin
- {$I-}
- ChDir(NewDir);
- result := (IOResult = 0);
- {$I+}
- end;
- Function CreateDir (Const NewDir : String) : Boolean;
- begin
- {$I-}
- MkDir(NewDir);
- result := (IOResult = 0);
- {$I+}
- end;
- Function RemoveDir (Const Dir : String) : Boolean;
- begin
- {$I-}
- RmDir(Dir);
- result := (IOResult = 0);
- {$I+}
- end;
- {
- $Log$
- Revision 1.4 2000-02-09 16:59:34 peter
- * truncated log
- Revision 1.3 2000/01/07 16:41:52 daniel
- * copyright 2000
- }
|