“Файл копирования Python в другой каталог” Ответ

Скопируйте весь каталог Python

import shutil

shutil.copytree(source, destination)
Tasa

Файл копирования Python в другой каталог

import shutil
shutil.copy2('/src/dir/file.ext', '/dst/dir/newname.ext') # complete target filename given
shutil.copy2('/src/file.ext', '/dst/dir') # target filename is /dst/dir/file.ext
Beanonymous

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

Копировать пихон

from shutil import copyfile
copyfile(src, dst)
Better Bug

Справочник копий из одного места в другой питон

# Source path 
src = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / source'
   
# Destination path 
dest = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / destination'
   
# Copy the content of 
# source to destination 
destination = shutil.copytree(src, dest) 
Bloody Buzzard

Ответы похожие на “Файл копирования Python в другой каталог”

Вопросы похожие на “Файл копирования Python в другой каталог”

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

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