Users browsing this thread: 1 Guest(s)
z3bra
Grey Hair Nixers
Best example for this would be IMO, a music collection. You might want to browse it by artist, genre, album, etc... Such a filesystem would make it seemless on the command line. It could as weel be achieved with symlinks though, but it would be a mess to maintain.
This filesystem might be good in some cases, but usually, when you need tags it means you have a HUGE log of data. And at this point, using the cli might be tedious (for searching for example).

I like the idea of being able to "play ~/music/tags/rock/*.mp3", but I hate the fact I'll have to run this for each song I get:

Code:
cp song.mp3 ~/music/tags/$ARTIST/@
cp song.mp3 ~/music/tags/$ALBUM/@
cp song.mp3 ~/music/tags/$GENRE/@
cp song.mp3 ~/music/tags/$YEAR/@

Also, even after doing that, where do I put "song.mp3" ? :)


Messages In This Thread
Tag based file system? - by TheAnachron - 20-09-2016, 10:48 AM
RE: Tag based file system? - by acg - 20-09-2016, 11:08 AM
RE: Tag based file system? - by TheAnachron - 20-09-2016, 11:47 AM
RE: Tag based file system? - by z3bra - 20-09-2016, 12:19 PM
RE: Tag based file system? - by acg - 20-09-2016, 12:33 PM
RE: Tag based file system? - by Mrat - 24-09-2016, 02:10 PM