Created
January 3, 2020 16:02
-
-
Save claudijd/c3d1655d73030f5bb860c39db1e9103c to your computer and use it in GitHub Desktop.
Clean desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import shutil | |
path = "/Users/jclaudius/Desktop/" | |
moveto = "/Users/jclaudius/Desktop/Archive/" | |
files = os.listdir(path) | |
files.sort() | |
for f in files: | |
if not os.path.isdir(f): | |
src = path+f | |
dst = moveto+f | |
shutil.move(src, dst) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment