I'm trying to figure out how to move a file from one directory to another (all C drive). I've read that shutil is the module to go with. Ok, I think "move" command is what I'm looking for. When I'm trying to run simple tests in command line python that looks like this:
Expand|Select|Wrap|Line Numbers
- import shutil
- move('C:\\....', 'C:\\....')
I've looked inside shutil.py module and there is a module "move". My guess is that I probably need to use the form like:
Expand|Select|Wrap|Line Numbers
- something.move('C:\\....', 'C:\\....')
Thank you