“CP Python” Código de respuesta

Copiar archivo en 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

Respuestas similares a “CP Python”

Preguntas similares a “CP Python”

Más respuestas relacionadas con “CP Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código