“CP Python” Respostas de código

copiar arquivo em 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

Respostas semelhantes a “CP Python”

Perguntas semelhantes a “CP Python”

Mais respostas relacionadas para “CP Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código