Hallo,
irgendwie stehe ich auf dem Schlauch, habe folgendes:
Delphi-Quellcode:
// flags for copy
type
TCopyFileFlag = (
cffOverwriteFile,
cffCreateDestDirectory,
cffPreserveTime
);
TCopyFileFlags = set of TCopyFileFlag;
function CopyFile(const SrcFilename, DestFilename: string; Flags: TCopyFileFlags=[cffOverwriteFile]): boolean;
procedure ....
begin
CopyFile('C:\test\test.txt', 'D:\testtest\.txt', cffCreateDestDirectory);
end;
Aber mir kommt die Fehlermeldung
Zitat:
Error: Incompatible type for arg no. 3: Got "TCopyFileFlag", expected "LongBool"
Was mache ich falsch?
Vielen Dank!