cerothen wrote:Satjit wrote:Hi Cerothen,
Thanks for the tip. However, isn't this method restricted to linking only 1 folder at a time instead of many folders together? For example, how do you link (connect) the folders 'C:\Media', 'D:\ Latest Audio', 'F:\Music', 'H:\My Pictures' etc all together as say, 'C:\My Collection' to be displayed within Serviio?
Cheers!

Good morning Satjit,
To do this the easiest way I would fire up your favorite text editor (in my case Notepad++) and use it to create a bat file with the following contents:
- Code:
REM Select directory to make links in
cd "C:\My Collection"
REM Create symbolic links to folders
mklink /D "Media" "C:\Media"
mklink /D "Latest Audio" "D:\Latest Audio"
mklink /D "Music" "F:\Music"
mklink /D "Pictures" "H:\My Pictures"
Should you wish you could also do junctions but I never can remember the difference and I typically just use symbolic links. This method also works for remote media if you map it as a network share.
This also could be done without the bat file in command prompt directly its just more convenient to make them using a bat file if you have lots.
The end result will be a folder containing a bunch of folders that each link to a directory that you indicated.
Hello Cerothen,
Thanks for the revert and apologies for the much delayed response...
I've tried what you suggested and have the following results:
C:\>cd "My Collection"
C:\My Collection>mklink /D "Photos" "C:\Pix"
symbolic link created for Photos <<===>> C:\Pix
C:\My Collection>mklink /D "Photos" "D:\Pix"
Cannot create a file when that file already exists.I understand that this is a limitation where Windows cannot have two symbolic links by the same name even if they point to two separate & differently named folders.
Wish there was a way around, wherein a single link titled 'Photos' could point to multiple folders having similar content spread across drives
