I have a company scanner but very often people forget to remove scanned (confidencial documents)
I want to create a script which will once day check a "/home/scanner" folder and if there are any files it moves them to my /home/Administrator folder.
I dont really dont know how to start. For now I create this:
import shutil
src = "/home/scanner/."
dst = "/home/Administrator/"
shutil.move(src, dst)
I know that os.walk() and listdir() shoud do a job but I donk know how to write a code.;-(
Would you be able to help me ?