delphi判断目录是否存在 [操作系统入门]

编程

delphi7

ifnot DirectoryExists(Edit1.Text) then 判断目录是否存在

begin

//判断目录不存在

end;

delphi 10.3

uses

FileCtrl;

procedure TForm4.FormCreate(Sender: TObject);

begin

ifnot FileCtrl.DirectoryExists(C: emp) then

showmessage(目录不存在);

end;

 

delphi 判断目录是否存在

以上是 delphi判断目录是否存在 [操作系统入门] 的全部内容, 来源链接: utcz.com/z/519386.html

回到顶部