如何判断一个路径是否有效?(50分)

  • 主题发起人 主题发起人 chenliqun
  • 开始时间 开始时间
C

chenliqun

Unregistered / Unconfirmed
GUEST, unregistred user!
如何判断一个路径是否有效,比如:C:/Dir1/MyFolder
我要知道这个MyFolder文件夹是否存在。How to do?
 
uses FileCtrl;

procedure TForm1.Button1Click(Sender: TObject);
begin
if not DirectoryExists('c:/temp') then
if not CreateDir('C:/temp') then
raise Exception.Create('Cannot create c:/temp');
end;
 
使用DirectoryExists函数,这个函数在FileCtrl文件中有声明,必须use这个文件。
以下是delphi的例子:
代码:
uses FileCtrl;

procedure TForm1.Button1Click(Sender: TObject);
begin
  if not DirectoryExists('c:/temp') then
    if not CreateDir('C:/temp') then
    raise Exception.Create('Cannot create c:/temp');
end;
 
我找到了:IsDirExists
 
多人接受答案了。
 
后退
顶部