You are not logged in.
Dear visitor, welcome to Aqua Computer Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 |
aktueller code s.u. |

|
|
Source code |
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 36 37 38 39 40 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
MP3sort
=======
Sort music files by trying to extract the artist name from
each filename in the directory and moving the file to a new
subdirectory with the artist's name.
Feel free to change the file extension mask and artist
search pattern to fit your needs.
:Copyright: 2004-2008 Jochen Kupperschmidt
:Date: 13-Nov-2008
:License: MIT
"""
from glob import iglob
import os
import re
EXTENSION = 'mp3'
PATTERN = re.compile('(.+) - .*')
if __name__ == '__main__':
# Get all filenames with the given extension.
filenames = filter(os.path.isfile, iglob('*.' + EXTENSION))
for filename in filenames:
try:
# Extract artist name from filename.
dirname = PATTERN.match(filename).group(1).strip()
except AttributeError:
pass
else:
if not os.path.isdir(dirname):
os.mkdir(dirname)
os.rename(filename, os.path.join(dirname, filename))
|
This post has been edited 2 times, last edit by "Y0Gi" (Jan 22nd 2013, 3:43am)
-