Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #python #move #directory
ADD COMMENT
Topic
Name
8+9 =