“Fichier de déplacement Python” Réponses codées

Fichier de déplacement Python

# To move a file in Python, use one of the following:
import os
import shutil

os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo")

# In the first two cases the directory in which the new file
# is being created must already exist.
SkelliBoi

Fichier de déplacement Python

import os, shutil
#move picture.png from /some/dir/ to /another/dir/Pictures/
shutil.move('/some/dir/picture.png', '/another/dir/Pictures/')
Victorious Vendace

Déplacer le fichier Python

import os
import shutil

os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
Dead Dog

Déplacer le fichier Python OS

import os
import shutil

os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")
BlueMoon

Déplacer les fichiers dans Python

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 moved\file name.file extension'
shutil.move(original,target)
Real Raccoon

Réponses similaires à “Fichier de déplacement Python”

Questions similaires à “Fichier de déplacement Python”

Plus de réponses similaires à “Fichier de déplacement Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code