
Okay, a bit of information first -- I like the Windows FS style (except the backslashes), and I like the Unix FS style. And what I mean by that; Windows: C:\Windows\System32\User32.dll -- Unix (to access the same file): /dev/sda/Windows/System32/User32.dll
I was thinking I could combine the two VFS' in a way that you could use either VFS path name to reference the same file. The idea is that this path name:
C:/Windows/System32/User32.dll
Would be equal to one of these path names:
/mount/sda/Windows/System32/User32.dll -- Note: /mount is where all the mounted devices go in my OS
hd0:/Windows/System32/User32.dll
Basically, what is going on there is that whenever a colon ':' is used, it references one of the mounted file systems in the /mount directory. Like an alias. The 'C:' would basically be an alias of 'hd0' or 'hd1' or whatever.
I got this idea while playing with PlayStation 2 homebrew -- I noticed a path name like this:
mc0:somedir/somefile.ext
I actually liked that a bit, and figured it could be an optional way to reference files in my OS.

Cheers,
-naota