码迷,mamicode.com
首页 > Windows程序 > 详细

delphi 判断目录是否存在

时间:2020-11-20 12:24:11      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:mcr   ctrl   dir   edit   object   create   text   file   style   

delphi7

if not DirectoryExists(Edit1.Text) then 判断目录是否存在
begin
   //判断目录不存在
end;

delphi 10.3

uses
  FileCtrl;

procedure TForm4.FormCreate(Sender: TObject);
begin
  if  not FileCtrl.DirectoryExists(C:\temp) then
    showmessage(目录不存在);


end;

 

delphi 判断目录是否存在

标签:mcr   ctrl   dir   edit   object   create   text   file   style   

原文地址:https://www.cnblogs.com/tulater/p/13986449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!