J'essaie d'utiliser robocopy
pour transférer un seul fichier d'un emplacement à un autre mais robocopy
semble penser que je spécifie toujours un dossier. Voici un exemple:
robocopy "c:\transfer_this.txt" "z:\transferred.txt"
Mais je reçois cette erreur à la place:
2009/08/11 15:21:57 ERROR 123 (0x0000007B) Accessing Source Directory c:\transfer_this.txt\
(notez le \
à la fin de transfer_this.txt
)
Mais si je le traite comme un dossier entier:
robocopy "c:\folder" "z:\folder"
Cela fonctionne mais je dois ensuite tout transférer dans le dossier.
Comment puis-je transférer un seul fichier avec 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)