robocopy
Tek bir dosyayı bir konumdan diğerine aktarmak için kullanmaya çalışıyorum ancak robocopy
her zaman bir klasör belirttiğimi düşünüyor gibi görünüyor. İşte bir örnek:
robocopy "c:\transfer_this.txt" "z:\transferred.txt"
Ancak bunun yerine bu hatayı alıyorum:
2009/08/11 15:21:57 ERROR 123 (0x0000007B) Accessing Source Directory c:\transfer_this.txt\
( \
sonundaki notu not edin transfer_this.txt
)
Ama bir klasörün tamamı gibi davranırsam:
robocopy "c:\folder" "z:\folder"
Çalışıyor ama sonra klasördeki her şeyi aktarmam gerekiyor.
Tek bir dosyayı yalnızca ile nasıl aktarabilirim robocopy
?
def copyFile(fromLocation,toLocation,big=False): print("copy file from " + fromLocation + " to " + toLocation) if big: iFind=fromLocation.rfind('\\') fromLocation1 = fromLocation[: (iFind+1)] fileName=fromLocation[iFind+1 :] toLocation1 = toLocation[:(toLocation.rfind('\\')+1)] strcmd="robocopy "+fromLocation1+" "+toLocation1+" "+fileName print(strcmd) os.system(strcmd) else: shutil.copy2(fromLocation,toLocation)