Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

File Organization?

Name: Anonymous 2011-09-08 20:14

To those organizational freaks with huge pic collections: how do you keep it all organized? Do you just have tons of folders? How do you account for pics that fall into multiple categories? Do you have a program that can apply multiple tags to each pic, and you then browse by tag? What do you do with the file names?

Name: Anonymous 2011-09-14 12:16

bump for interest

Name: Anonymous 2011-09-14 12:47



import os,shutil

def main():
    allFiles=dict()
    for filename in os.listdir('.'):
        if os.path.isfile(filename):
            ind=filename.rfind('.')

           
            if ind==-1:
                continue

            extension=filename[ind+1:]
            theFile=filename[:ind]

            #skip hidden files

            if len(theFile)<1:
                continue

            if not extension in allFiles:
                allFiles[extension] =[]

            allFiles[extension].append(theFile)

    for ext in allFiles:
        print 'Creating', ext, 'folder.'
        os.mkdir(ext)
        for file in allFiles[ext]:
            shutil.move("{0}.{1}".format(file,ext), ext)

if __name__== '__main__':
                        main()


Thank me later

Name: Anonymous 2011-09-15 3:07

My OS allows for tagging of files, and searching by tags.

Name: ryan 2011-09-16 3:32

ryankelly_96@hotmail.com
have at it
YOU ALL DESERVE TO DIE YOU NERDS

Name: Anonymous 2011-09-20 18:24

How does the file tagging in Windows 7 fare? Is there a limit to the number of tags you can apply to any one file? Are there improvements to this style of file organization in the works for Windows 8? Are tags / labels the future of file organization?

Name: Anonymous 2011-09-29 18:22

I can't be bothered to tag up thousands of shit.

Don't change these.
Name: Email:
Entire Thread Thread List