You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
676 B
21 lines
676 B
def foldername(extension):
|
|
if(extension == ""):
|
|
return None
|
|
else:
|
|
switcher = {
|
|
"exe" : "Software/Applications",
|
|
"txt" : "Notes/Text",
|
|
"pdf" : "PDFs",
|
|
"c" : "C programs",
|
|
"py" : "Python files",
|
|
"java": "Java programs",
|
|
"cpp" : "Cpp programs",
|
|
"jpg" : "Images",
|
|
"png" : "Images",
|
|
"jpeg": "Images",
|
|
"raw" : "Images",
|
|
"mp3" : "Music",
|
|
"mp4" : "Videos",
|
|
"mkv" : "Videos",
|
|
}
|
|
return switcher.get(extension, "Extras") #returns "New Folder" if not in dictionary |