如何取得所有連線網路磁碟機的絕對路徑? |
|
領航天使
站長 發表:12216 回覆:4186 積分:4084 註冊:2001-07-25 發送簡訊給我 |
如何取得所有連線網路磁碟機的絕對路徑?
拉一Memo1,寫以下的程式碼
unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Memo1: TMemo; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.DFM} Function GetNetworkDriveMappings(SList:TStrings):Integer; Var I:Char; ThePath:String; MaxNetPathLen:DWord; drivestr:string; Begin SList.Clear; MaxNetPathLen:=MAX_PATH; SetLength(ThePath,MAX_PATH); For I := 'A' to 'Z' Do begin DriveStr:=I ':'; If WNetGetConnection( pchar(DriveStr),PChar(ThePath), MaxNetPathLen)=NO_ERROR Then SList.Add(I ': ' ThePath); end; Result := SList.Count; End; procedure TForm1.Button1Click(Sender: TObject); begin GetNetworkDriveMappings(memo1.lines); end; end.~~~Delphi K.Top討論區站長~~~
------
~~~Delphi K.Top討論區站長~~~ |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |