I have two different fuse filesystems in Python (subclassing Operations
) that I combine into a single mountpoint. Right now I am creating two folders inside another and mounting them there. Something like this:
/mnt/myfolder/fuse1
/mnt/myfolder/fuse2
(my folder is a real folder in filesystem)
But I would like to extend this idea to more and in a dynamical way. In other words I would like that myfolder
is also a fuse filesystem in Python that dispatch to different objects. Is this possible?