![]() |
Delphi-Version: 7
Get Drive Letter
function GetDriveLetter(DriveIndex: Byte): PAnsiChar; stdcall; external 'GetDiskSerial.dll';
Hi , is there a way to get the Drive Letter from Drive Index , For example , when i enter 0 it will give me the current drive which is 'C:' and 'D:' .... etc A pseudo function :
Delphi-Quellcode:
thank you .
Function GetDriveLetter(DriveIdx:Byte):String;
begin Result:=....DriveIdx ; // Result will be 'C: D: ' if DriveIdx value is 0 end; |
AW: Get Drive Letter
Delphi-Quellcode:
function GetDriveLetter(DriveIdx:byte):string;
var vDrivesSize: Cardinal; vDrives : array[0..128] of Char; vDrive : PChar; Drive:string; Index:byte; begin if DriveIdx = 0 then GetDir(DriveIdx, Drive) else begin vDrivesSize := GetLogicalDriveStrings(SizeOf(vDrives), vDrives); if vDrivesSize <> 0 then begin Index:=0; vDrive := vDrives; while (vDrive^ <> #0) and (Index < DriveIdx) do begin Drive:=StrPas(vDrive); Inc(vDrive, SizeOf(vDrive)); inc(Index); end; end; end; Result:=copy(Drive, 1, 1); end; |
AW: Get Drive Letter
|
AW: Get Drive Letter
Zitat:
if i enter 0 as DriveIdx value , it will give drive 'D' which normally gives 'C' . and 1 will give drive 'C' which normally gives drive 'D' |
AW: Get Drive Letter
Ok, a new Version...
Delphi-Quellcode:
function GetDriveLetter(DriveIdx:byte):string;
var vDrivesSize: Cardinal; vDrives : array[0..128] of Char; vDrive : PChar; Drive:string; Index:byte; begin if DriveIdx = 0 then Drive:=GetCurrentDir else begin vDrivesSize := GetLogicalDriveStrings(SizeOf(vDrives), vDrives); if vDrivesSize <> 0 then begin Index:=0; vDrive := vDrives; while (vDrive^ <> #0) and (Index < DriveIdx) do begin Drive:=StrPas(vDrive); Inc(vDrive, SizeOf(vDrive)); inc(Index); end; end; end; Result:=copy(Drive, 1, 1); end; Zitat:
Delphi-Quellcode:
But this Code gives you no CurrentDir, it is an esay Drivelist.
function GetDriveLetter(DriveIdx:byte):string;
var vDrivesSize: Cardinal; vDrives : array[0..128] of Char; vDrive : PChar; Drive:string; Index:byte; begin Drive:=''; vDrivesSize := GetLogicalDriveStrings(SizeOf(vDrives), vDrives); if vDrivesSize <> 0 then begin Index:=0; vDrive := vDrives; while (vDrive^ <> #0) and (Index <= DriveIdx) do begin Drive:=StrPas(vDrive); Inc(vDrive, SizeOf(vDrive)); inc(Index); end; end; Result:=copy(Drive, 1, 1); end; |
AW: Get Drive Letter
himitzu
hat da einen link gesetzt Frage ![]() Kann man das für Delphi brauchbar machen.:| |
AW: Get Drive Letter
Zitat:
![]() |
AW: Get Drive Letter
Danke:thumb:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:08 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz