TatukGIS - GisDefs - CheckDir 函数
函数名称 CheckDir
所在单元 GisDefs
函数原型 function CheckDir(const _path: String): Boolean;
函数说明
如果 _path 是一个有效的路径,返回 True,否则返回 False.
举例说明
1 if CheckDir('c:\') then 2 ShowMessage('路径有效'); // 可以执行到此 3 4 if CheckDir('c:\install.txe') then 5 begin 6 end 7 else 8 ShowMessage('路径无效'); // 可以执行到此