Delphi GetCurrentDir 获取当前文件夹
Posted 癫狂编程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi GetCurrentDir 获取当前文件夹相关的知识,希望对你有一定的参考价值。
//获取当前文件夹 GetCurrentDir
var
dir: string;
begin
dir := GetCurrentDir;
ShowMessage(dir); //C:Documents and SettingswyMy DocumentsRAD StudioProjects
end;
=============
function GetCurrentDir: string;
begin
GetDir(0, Result);
end;
以上是关于Delphi GetCurrentDir 获取当前文件夹的主要内容,如果未能解决你的问题,请参考以下文章