“Python Duplicate File” Ответ

Python Duplicate File

>>> import shutil
>>> # Copy the file in same folder with different name
>>> shutil.copy('original.txt', 'duplicate.txt')
'/home/username/duplicate.txt'
>>> shutil.copy('original.txt', 'my_folder/duplicate.txt')
'/home/username/my_folder/duplicate.txt'
Annoyed Alligator

Скопировать файл в 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

Ответы похожие на “Python Duplicate File”

Вопросы похожие на “Python Duplicate File”

Больше похожих ответов на “Python Duplicate File” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования