Hi Delphianer
Ich benutze in meinem Code folgende Function:
Delphi-Quellcode:
function CopyDir(const fromDir, toDir: string): Boolean;
var
fos: TSHFileOpStruct;
begin
ZeroMemory(@fos, SizeOf(fos));
with fos do
begin
wFunc := FO_COPY;
fFlags := FOF_FILESONLY;
pFrom := PChar(fromDir + #0);
pTo := PChar(toDir)
end;
Result := (0 = ShFileOperation(fos));
end;
das ganze wird eine Console App, gibt es irgendeine Möglichkeit, während des Kopier vorganges einen Status anzuzeigen ? egal ob in Prozent oder in zB X MB von 129 MB ?
Vielen Dank im Voraus!
LG