什麼是在應用程序 啓動時創建多個* .txt文件的簡便方法,即檢查它們是否存在,如果不創建它們。 我需要創建約10個文本文件。 我會做這樣的每一個文件:創建多個文本文件
var
MyFile: textfile;
ApplicationPath: string;
begin
ApplicationPath := ExtractFileDir(Application.ExeName);
if not FileExists(ApplicationPath + '\a1.txt') then
begin
AssignFile(MyFile, (ApplicationPath + '\a1.txt'));
Rewrite(MyFile);
Close(MyFile);
end
else
Abort;
end;
你沒有提到你的Delphi版本。如果您使用的是D2009 +,則建議(由Delphi)使用流而不是「舊」Pascal文件方法,因爲這些方法不支持Unicode。 –
而不是流,你可以使用'FileCreate()'來代替。 –