1

My goal is this: I have a library, say it's called Series. I store my series in two different places, one for watched episodes and one for unwatched episodes.

Obviously I can simply add the root folder of each location to a series library. What I would prefer to do is have a sub-library within Series for each series, for example:

Series \ Lost

Lost (Unwatched series)
Episode 3
Episode 4

Lost (Watched series)
Episode 1
Episode 2

Is there a way to achieve this, or something approximating this (without having a full library for each series)?

P.S. I've read the other topic, but I was wondering if there was a possible workaround for this specific need. More out of hope than anything else. ;)

quack quixote
  • 43,504
dr_draik
  • 115

3 Answers3

2

Nested libraries are certainly possible. (Tested with Windows 7 Ultimate x64 Service Pack 1)

Libraries (".library-ms" files as seen from the command prompt) are normally stored in "C:\Users\USERNAME\AppData\Roaming\Microsoft\Windows\Libraries\" but you can move or copy them anywhere without any loss of functionality. The only place you can't copy them from is the virtual "Libraries\" location.

If you place library [B] in a location or subfolder of library [A], you can access [B] from within [A].

You cannot however set library [B] as one of the locations for library [A]. If you try, [B]'s locations will be added instead.

Zolxys
  • 21
1

The best I have achieved is by adding the serie's directories one by one and grouping them by folders.

enter image description here

Additional tips: to group them in one disk/directory (without library) you could use junctions (command prompt mklink /j ...)

Gareth
  • 19,080
fluxtendu
  • 7,219
0

Just append the watched folders names with _Watched. So you would have:

Seinfield (N:) (3)
S4
S5
S6
Seinfield_Watched (N:) (3)
S1
S2
S3
Jens Erat
  • 18,485
  • 14
  • 68
  • 80