Guest User

Untitled

a guest
Jan 24th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import sys, os
  2. import shutil
  3.  
  4. sourcepath="D:DataMP-PO-to-QBNEWXMLS"
  5.  
  6. for filename in os.listdir(sourcepath):
  7. current_file=os.path.join(sourcepath, filename)
  8. dst="D:DataMP-PO-to-QBCONVERTED"
  9. shutil.move(current_file, dst)
Add Comment
Please, Sign In to add comment