Answers for "move directory python"

7

python move file

import os, shutil
#move picture.png from /some/dir/ to /another/dir/Pictures/
shutil.move('/some/dir/picture.png', '/another/dir/Pictures/')
Posted by: Guest on July-06-2020
3

change directory in python script

os.chdir(os.path.dirname(__file__))
Posted by: Guest on October-14-2020
1

change directory in python os

import os

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

os.chdir(path)
Posted by: Guest on March-16-2021

Code answers related to "move directory python"

Python Answers by Framework

Browse Popular Code Answers by Language