Created
May 18, 2017 22:58
-
-
Save anachronic/0a15ba45e50bacb69f27102778fdc7e2 to your computer and use it in GitHub Desktop.
This file contains 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 | |
whitelist = ('a', 'b', 'c.ext', '.gitignore') | |
curpath = os.getcwd() | |
for file in os.listdir(curpath): | |
if file not in whitelist: | |
os.remove(os.path.join(curpath, file)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment