“Справочник перемещения Python” Ответ

Файл перемещения 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

Справочник изменения в Python OS

import os

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

os.chdir(path)
Joyous Jellyfish

Справочник изменения в сценарии Python

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

Справочник перемещения Python

import shutil

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

shutil.move(original, target)
cabiste

Ответы похожие на “Справочник перемещения Python”

Вопросы похожие на “Справочник перемещения Python”

Больше похожих ответов на “Справочник перемещения Python” по Python

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

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