-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuffixlist.py
35 lines (33 loc) · 1.03 KB
/
suffixlist.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
suffix_names = {
#pictures
'.ai': 'media/images',
'.bmp': 'media/images',
'.gif': 'media/images',
'.jpg': 'media/images',
'.jpeg': 'media/images',
'.png': 'media/images',
'.ps': 'media/images',
'.psd': 'media/images',
'.svg': 'media/images',
'.tif': 'media/images',
'.tiff': 'media/images',
'.cr2': 'media/images',
#packages
'.7z': 'other/compressed',
'.arj': 'other/compressed',
'.deb': 'other/compressed',
'.pkg': 'other/compressed',
'.rar': 'other/compressed',
'.rpm': 'other/compressed',
'.tar.gz': 'other/compressed',
'.z': 'other/compressed',
# fonts
'.fnt': 'other/fonts',
'.fon': 'other/fonts',
'.otf': 'other/fonts',
'.ttf': 'other/fonts',
# audio
'.mp3': 'media/audio',
'.wav': 'media/audio',
'.wma': 'media/audio',
}