Ok, I managed to get around the problem finding out a nice (but still not perfect) solution. It' still a work in progress and is not a one-click solution.
Nonetheless, it's perfect if you have 100s of directories containing music or video and you like to see related covers for each and every one in the good-old XP style (which I really prefer to the modern Seven style).
---------------------------------------------------------
Disclaimer:
Beware! I make use of a quick and dirty batch script in which I didn't write any kind of error checking; that means the script is not error proof.
I tried to be as much clean as possible and nothing inside the script is going to override or delete any file other the temporary ones it creates itself. Anyway, beware, I'm not going to be held responsible for any lost file, be carefull.
---------------------------------------------------------
The trick is to make use of Windows Seven's capabilities in using desktop.ini files to specify which icon to use as a directory thumbnail.
I created a little batch script that recursively does the following on each subdirectory inside the one it runs in:
- makes ImageMagick convert the folder.jpg file into a folder.ico file;
- creates a desktop.ini file;
- makes the directory read-only. Step 1
I used ImageMagick ................
Step 2
Once I got a folder.ico ...............
Step 3
Last entry is needed f.......
The Batch Script Code:
xcopy desktop.ini %1\ /h
for /r /d %%x in (*) do (
pushd "%%x"
convert folder.jpg ............. Syntax:
The batch script ............
Example create_icons.bat .......... Usage
Simply put,..................
Limits
- It does not cr.................
Pay attention
- There is no erro.............!!!