Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

move files in python

import shutil
original = r'original path where the file is currently storedfile name.file extension'
target = r'target path where the file will be movedfile name.file extension'
shutil.move(original,target)
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #move #files #python
ADD COMMENT
Topic
Name
8+4 =