“CP Python” Code-Antworten

Datei in Python3 kopieren

import shutil

original = r'original path where the file is currently stored\file name.file extension'
target = r'target path where the file will be copied\file name.file extension'

shutil.copyfile(original, target)
XeN0N

CP Python

import shutil

source = r"C:\Users\tsmehra\dev\example\demo.txt"
destination = r"D:\example2"

print("The demo.txt has copied at:")
print(shutil.copy(source, destination))

Output

The demo.txt has copied at:
D:\example2\demo.txt
Careful Capuchin

Ähnliche Antworten wie “CP Python”

Fragen ähnlich wie “CP Python”

Weitere verwandte Antworten zu “CP Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen