check inifile exist delphi

[亡魂溺海] 提交于 2019-12-11 04:28:07

问题


How can I check if an INIfile exists? in a specific path and under a specific name?


回答1:


For instance this way ...

if FileExists('c:\yourinifile.ini') then
  ShowMessage('c:\yourinifile.ini exists :)');



回答2:


Call FileExists passing the full path to the file. So, just the same as you would do for any file.



来源:https://stackoverflow.com/questions/5462260/check-inifile-exist-delphi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!