“CP Python” Kod odpowiedzi

Kopiuj plik w Python3

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

Odpowiedzi podobne do “CP Python”

Pytania podobne do “CP Python”

Więcej pokrewnych odpowiedzi na “CP Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu