Posts Tagged ‘folders’

20080826 Create .ZIPs from multiple folders

There we go with yet another exercise in Python :-) The idea here is to archive several folders, having each folder in a ZIP file. So if you have two folders, A and B, you end up with A.zip and B.zip. No doubt this can be done with shell programming (and it will be much [...]

20080513 Split files into folders by letter

I had a lot of files in one folder. It is not very practical to browse the folder that way, so I decided to create a little script which would split the files into different folders, using the first letter of the file for naming the folder, as in a, b, c, d… but using [...]