“Python Move Directory” Code-Antworten

Python -Bewegungsdatei

# 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

Verzeichnis in Python OS ändern

import os

path = "C:\Users\Your\Directory"

os.chdir(path)
Joyous Jellyfish

Ändern Sie das Verzeichnis im Python -Skript

os.chdir(os.path.dirname(__file__))
Splendid Sandpiper

Python Move Directory

import shutil

original = r'C:\games' # original folder / file path 
target = r'D:\homework' # where to move it 

shutil.move(original, target)
cabiste

Ähnliche Antworten wie “Python Move Directory”

Fragen ähnlich wie “Python Move Directory”

Weitere verwandte Antworten zu “Python Move Directory” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen