Questions tagged [virtualfilesystem]

Use virtualfilesystem for questions related to APIs which facilitate the creation of data abstractions which behave like real file systems, such as accessing database records as virtual file resources, accessing network files as local files, or accessing compressed files as uncompressed files.

References

73 questions
25
votes
2 answers

Is there a simple "virtual file" class for .NET (c# if source is available)?

For a long time, I've been looking for a class in .NET that has functionality that makes it so that the operating system thinks there is a file (or directory, or both, etc) at a particular location - but all hooks are passed to a function (or…
Timothy Khouri
  • 31,315
  • 21
  • 88
  • 128
19
votes
2 answers

How to construct an in-memory virtual file system and then write this structure to disk

I'm looking for a way to create a virtual file system in Python for creating directories and files, before writing these directories and files to disk. Using PyFilesystem I can construct a memory filesystem using the following: >>> import fs >>> dir…
James Vickery
  • 732
  • 3
  • 10
  • 23
10
votes
1 answer

How to create a virtual file system with offline files (similar to OneDrive) in .NET?

I need to create a virtual file system that syncs files from my Azure app service to local drive and backward. I need only some files and folders to be synchronized to my local file system and be available offline. The files/folders should…
Andriy Y
  • 361
  • 2
  • 15
10
votes
4 answers

Virtual drives in .NET?

Is there any easy library for .NET to mount virtual drives? I need to mount an archive in a virtual drive and, most likely, use a virtual file system. The archive format does not support folders so I'd need to supply the files and folders manually…
Vercas
  • 8,931
  • 15
  • 66
  • 106
7
votes
1 answer

How do I write a custom search provider for Windows Explorer search UI

I am working on a Windows Explorer Namespace Extension which is a virtual filesystem. With regards to this, I would like to support search from the search dialog available in Windows Explorer. Currently I'm able to search by name in the folder I'm…
tronda
  • 3,902
  • 4
  • 33
  • 55
7
votes
2 answers

Ruby generic filesystem libraries

I am looking for a "Virtual File System" type library for ruby. I want to be able to have a completely generic file system that I can easily switch between using Local files and using S3 or using FTP or something like that. (Identical to VFS for…
Mitch Dempsey
  • 38,725
  • 6
  • 68
  • 74
6
votes
2 answers

Delete in Cloud Files API stopped working on Windows 21H1

I am creating virtual drive using Windows Cloud Filter API. The delete callback stopped working as expected on Windows Home 21H1 19043.1165 (cldflt.sys 10.0.19041.1110). If I return an error code from the CF_CALLBACK_TYPE_NOTIFY_DELETE, the…
6
votes
1 answer

How to implement a virtual filesystem on macos?

I have seen that some applications are able to represent themselves as external disks within Finder on MacOS. Typically, these are cloud storage applications such as PCloud Drive and WD Discovery. I'm wondering how they do this. I realize that cloud…
William Rosenbloom
  • 2,506
  • 1
  • 14
  • 37
6
votes
1 answer

Why doesn't std::istream assume ownership over its streambuf?

I am writing some sort of virtual file system library for video-games in the likes of CRI Middleware's ROFS (see Wikipedia). My intention with the library is to provide natural means of accessing the resources of the games I develop, which store…
Gui Prá
  • 5,559
  • 4
  • 34
  • 59
5
votes
3 answers

Virtual Filesystem with C/C++ under Windows

I am currently developing a game which simulates an operating system. Therefore i need an ingame filesystem. Currently, i am using zziplib to be able to load files from a zip archive, however this is a readonly "filesystem" and i need a way to write…
Christian Ivicevic
  • 10,071
  • 7
  • 39
  • 74
5
votes
8 answers

Algorithm for determining a file's identity

For an open source project I have I am writing an abstraction layer on top of the filesystem. This layer allows me to attach metadata and relationships to each file. I would like the layer to handle file renames gracefully and maintain the…
Sam Saffron
  • 128,308
  • 78
  • 326
  • 506
4
votes
0 answers

How to implement Streaming Mode using Cloud Filter API (cfapi)?

I am trying to implement streaming mode using Cloud Filter API. My aim is to create a drive with high security - the file content is available only when the drive is online and no data is stored on the client machine. If permissions are withdrawn,…
4
votes
1 answer

Virtual File System API / Cloud Provider Synchronization API for Linux?

Microsoft and Apple have recently introduced an API for synchronizing cloud storage files to the local file system: Cloud Provider API (also known as Cloud Filter API) for Windows and File Provider API for Apple and iOS. For example, the Microsoft…
IT Hit WebDAV
  • 5,652
  • 12
  • 61
  • 98
4
votes
1 answer

Automate displaying Attributes column in Windows File Manager

I am trying to automate displaying the Attributes column in Windows File manager in the Details view. This column should be displayed for a specific folder only (not for all folders in the system). As far as I know, this could be made via a…
Coder
  • 220
  • 2
  • 10
4
votes
1 answer

macFuse requires Recovery mode on Mac OS 11+

Since Mac OS 11 Big Sur release Apple allows installation of kext drivers in the Recovery mode only. It also prohibits installation of kext drivers from Apple store. Which I guess is the end of macFuse, at least for virtual/cloud file systems. What…
1
2 3 4 5