Automated Work Flow

Hi all,

I want to make a program, which automates the following work flow:
I need to move several files (one after the other) between folders on my computer.
The same files need to be moved between within OneDrive between the same folders. Now I want a program that moves the files automatically within OneDrive after I moved it local on my computer.

Maybe some hinds? First steps?
Thank you!!

@CodeeeCode What you need to do is look into the built-in libraries such as pathlib and shutil. They will come in very handy. There are great tutorials on the internet that can help you with this. Writing a program to move files is relatively easy with Python. Make sure to test on some files you do not care about before running the program on the files you do care about.

1 Like

This will surely help. Let me know if you have more questions.

2 Likes

Thanks guys. I will have a try and let you know. :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.