“CP Python” Kode Jawaban

Salin file dalam 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

Jawaban yang mirip dengan “CP Python”

Pertanyaan yang mirip dengan “CP Python”

Lebih banyak jawaban terkait untuk “CP Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya