delphi 获得父目录–指定级父目录
2021-02-02 09:15
标签:pat integer ctf rac RoCE delphi mst set function function get_dir_parent(dir:string;n:integer):string; //n为几级父目录 st:=GetCurrentDir; end; end; 调用 showmessage(get_dir_parent((ExtractFilePath(ParamStr(0))),1)); delphi 获得父目录–指定级父目录 标签:pat integer ctf rac RoCE delphi mst set function 原文地址:https://www.cnblogs.com/tc310/p/11558797.html
var
st:string;
i:integer;
begin
SetCurrentDir(dir);
for i:=1 to n do
begin
ChDir(‘..‘);
result:=GetCurrentDir;
SetCurrentDir(st);//恢复最初
procedure TForm1.Button1Click(Sender: TObject);
begin
end;
上一篇:C# List
文章标题:delphi 获得父目录–指定级父目录
文章链接:http://soscw.com/index.php/essay/49903.html