[求助]在我指定的其他文件夹中建立新文件夹问题
就是说想在我指定的其他文件夹中建立新文件夹,用Extractfiledir还有Extractfilepath都不行,怎么办???
procedure TForm1.Button1Click(Sender: TObject);
var
filename:string;
begin
filename:=extractfilepath(Application.exename)+'\123';
mkdir(filename);
end;