delphi判断目录是否存在 [操作系统入门]
ifnot DirectoryExists(Edit1.Text) then 判断目录是否存在begin//判断目录不存在
end;
delphi 10.3
usesFileCtrl;
procedure TForm4.FormCreate(Sender: TObject);beginifnot FileCtrl.DirectoryExists(‘C: emp‘) then
showmessage(‘目录不存在‘);
end;
delphi 判断目录是否存在
以上是 delphi判断目录是否存在 [操作系统入门] 的全部内容, 来源链接: utcz.com/z/519386.html