怎样判断应用程序的所在目录(10分)

  • 主题发起人 主题发起人 programsky
  • 开始时间 开始时间
P

programsky

Unregistered / Unconfirmed
GUEST, unregistred user!
当程序编译后用什么函数得到它所在的目录?
 
Path := ExtractFilePath(Application.ExeName);
 
慢了一步 :(
 
楼上方法无法判断重名问题, getcurrentdir可判断运行程序所在目录
 
或者是
GetDir(0,Path);
 
Path := ExtractFilePath(paramstr(0));
 
同一楼上
 
多人接受答案了。
 
后退
顶部