“Python -Datei in ein anderes Verzeichnis kopieren” Code-Antworten

Kopieren Sie das ganze Verzeichnis Python

import shutil

shutil.copytree(source, destination)
Tasa

Python -Datei in ein anderes Verzeichnis kopieren

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

Datei in Python3 kopieren

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

Copyfile Pyhon

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

Kopieren Sie das Verzeichnis von einem Ort zu einem anderen Python

# 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

Ähnliche Antworten wie “Python -Datei in ein anderes Verzeichnis kopieren”

Fragen ähnlich wie “Python -Datei in ein anderes Verzeichnis kopieren”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen