How can you check the contents of a file with python, and then copy a file from the same folder and move it to a new location?
I have Python 3.1 but i can just as easily port to 2.6
thank you!
How can you check the contents of a file with python, and then copy
Share
for example
If you look at the shutil doc, under .move() it says
I guess you can use copy2() to move to another file system.