uses FileCtrl
//
procedure TForm1.Button1Click(Sender: TObject);
var i: Integer; C: String;
DType: Integer;
DriveString: String;
begin
ListBox1.Clear; for i:=65 to 90 do
begin
C := chr(i) + ':\';
DType:=GetDriveType(PChar(C));
case DType of
0: DriveString := C + ' ';
1: DriveString:= C + ' ';
DRIVE_REMOVABLE: DriveString:= C+' REMOVABLE USB Drive.';
DRIVE_FIXED: DriveString:= C + ' Local FIXED Drive.';
DRIVE_REMOTE: DriveString:= C + ' REMOTE Drive.';
DRIVE_CDROM: DriveString:= C + ' CD-ROM.';
DRIVE_RAMDISK: DriveString := C + ' RAM Disk.';
end;
if not ((DType = 0) or (DType = 1))
then ListBox1.Items.AddObject(DriveString, Pointer(i));
end;
end;
procedure TForm1.ListBox1Click(Sender: TObject);
var
RootPath: String;
SectorsPerCluster: DWord;
BytesPerSector: DWord;
NumFreeClusters: DWord; // Number of free clusters
TotalClusters: DWord; // Total clusters
DriveByte: Byte; // Drive byte value
FreeSpace: Int64; // Free space on drive
TotalSpace: Int64; // Total drive space.
begin
with ListBox1 do
begin
DriveByte:=Integer(Items.Objects[ItemIndex])-64;
RootPath:=chr(Integer(Items.Objects[ItemIndex]))+':\';
if GetDiskFreeSpace(PChar(RootPath), SectorsPerCluster,
BytesPerSector, NumFreeClusters, TotalClusters)
then
begin
Label1.Caption:=Format('%.0n', [SectorsPerCluster*1.0]);
Label2.Caption:=Format('%.0n', [BytesPerSector*1.0]);
Label3.Caption:=Format('%.0n', [NumFreeClusters*1.0]);
Label4.Caption:=Format('%.0n', [TotalClusters*1.0]);
FreeSpace:=DiskFree(DriveByte);
TotalSpace:=DiskSize(DriveByte);
Label5.Caption:=Format('%.0n', [FreeSpace*1.0]);
Label6.Caption:=Format('%.0n', [TotalSpace*1.0]);
end
else
begin
Label1.Caption:='X';
Label2.Caption:='X';
Label3.Caption:='X';
Label4.Caption:='X';
Label5.Caption:='X';
Label6.Caption:='X';
ShowMessage('No File founded...!');
end;
end;
end;
Get Hard Disk Cluster Information
Abonnieren
Posts (Atom)
Beliebte Posts
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalten,...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen GIF...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.64 - Update 11/2024 Hosts File Editor allows for the easy editing of host files and backup creation. Create your own h...
-
Dir Sniffer Version 0.08 - Update 08/2024 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
ASCii Text Creator v.0.24 - Update 11.2023 * Add BugFix Gui Move Message Send * Add 447 Figlet Font Pack * Fixed Invert Unicode Function * ...
Keine Kommentare:
Kommentar veröffentlichen