hasse69 / rar2fs

FUSE file system for reading RAR archives
https://hasse69.github.io/rar2fs/
GNU General Public License v3.0
272 stars 25 forks source link

Mount only the content of the rar archive #150

Closed ossii79 closed 3 years ago

ossii79 commented 3 years ago

Is there any way to mount only the content of the archive, not anything outside of it? In situations where you have: Maindir SomeInfoFile SomeDir/WithSomeInfo something.rar (something.mkv split) something.r01 (something.mkv split) something.r02 (something.mkv split)

When mounting with rar2fs I want the mount point to show: Maindir something.mkv

hasse69 commented 3 years ago

The purpose of rar2fs is to mimic the source file system as if you had extracted all your archives inline. There is currently no support for filtering or flattening of the directory structure since that would be in direct conflict with the above. Besides, there are most likely file systems out there that can do the job a lot better than rar2fs would ever be able to, like this one https://github.com/gburca/rofs-filtered, You can stack as many FUSE file systems as you want.