Hey hey. It's been a while. I'm still alive and kickin.
I wrote a batch file last night after thinking how cool symlinks are in linux and how it would be nice to have them in Windows. Turns out, they DO exist in Windows (7). Excellent stuff.
What are symlinks and why should you care?
- Symlinks are basically references to files. Think of them as a more advanced shortcut. The difference between a shortcut and a symlink is that applications such as photoshop see symlinks as if they were the actual physical file.
- Symlinks essentially let you make copies of a file which are actually just pointers to the real file. A file in C:/images/awesome could be a symlink pointing to the actual file which really resides in C:/images/some_other_folder
- You can have more than one symlink per file. This is amazing for organizing textures/reference photos for things like that image of the worn out yellow brick wall with broken plaster. Now you could have a symlink in a folder called yellow, brick, walls, plaster, dirty_broken and that picture will appear in any of them.
Yes, Adobe Bridge can let you tag images and search through images based on tags. I found that it performed slowly when I still had it installed. Not only that, it costs money which is not something everybody is willing to pay for.
However, symlinks are a bit of a pain in the ass to make as you would typically do it in the command line, one file at a time. I wrote a batch file which lets you select multiple files, right click, and Send To the batch file which will then prompt you for a target folder.
I think it would be an interesting project to extend on this idea and have a built in symlink plugin which will allow you to specify multiple folders during the Save As... process which will then create links in each folder and save the original to the default save folder.
I wanted to know two things first though:
- Does anything like this exist already?
- Do any of you see any use for this?