virtual drive - How to change the file read, create , write operations in specific folder on windows? what is the analog of OSXFUSE in windows? -
i want change file read, write, copy, delete operations in specific folders on windows? on macos there osxfuse allowing mount desired folders , change behavior of these operations. how same on windows?
there seems confusion here. osxfuse lets create virtual filesystem, data resides anywhere (possibly in directory on disk). on windows same can done our callback file system (cbfs). if want expose directory /x virtual directory /y , control operations performed on /y/* files , cbfs includes mapper sample this.
on other hand if want intercept access files on disk (say /x/* files in above example), in windows done filesystem filter driver. not osxfuse can on macos. can create own filter driver or use our callbackfilter.
Comments
Post a Comment