“Python Move Directory” Kod odpowiedzi

Plik Python Move

# 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

Zmiana katalogu w Python OS

import os

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

os.chdir(path)
Joyous Jellyfish

Zmień katalog w skrypcie Python

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

Odpowiedzi podobne do “Python Move Directory”

Pytania podobne do “Python Move Directory”

Więcej pokrewnych odpowiedzi na “Python Move Directory” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu