Registriert seit: 8. Mai 2005
366 Beiträge
Delphi XE3 Enterprise
|
AW: Dateiaustausch per BAT unter WIN / 64 Bit
16. Nov 2013, 14:21
Hallo,
die Batch ist wie folgt aufgebaut, als Parameter %1 wird der aktuelle Pfad der Anwendnung übergeben, kopieren wird in einem Unterverzeichnis ausgeführt
@echo off
set application=Application.exe
:s
del %1%application%
if exist %1%application% goto s
copy %application %1%application%
pause
del %application%
cd %1
%application%
Exit
@hatte wohl einen Fehler im Aufruf Shellexecute,
aktuell funktioniert es, zumindest die Batch alleine. Vielleicht kanns dann doch noch einer brauchen....
mfg wf
Geändert von waldforest (16. Nov 2013 um 14:45 Uhr)
|