Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
798 views

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 - ...
7
votes
3answers
244 views

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 ...
5
votes
2answers
229 views

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 ...
4
votes
1answer
326 views

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 ...
3
votes
3answers
467 views

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 ...
3
votes
1answer
185 views

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: ...
3
votes
8answers
448 views

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 ...
2
votes
1answer
168 views

Is PhysicsFS platform-independent?

I'm thinking about using PhysicsFS in my game engine project, but I'd like to first make sure it's entirely platform-independent. That's because I'd like to port my engine to some rather obscure ...
2
votes
1answer
148 views

how to implement virtual filesystem with PHP and Flex?

I am creating an EDM (Electronic document Management) system which will use Flex for front-end , PHP at server side and Mysql as database . Since its an EDM a single file will have many versions old ...
2
votes
1answer
273 views

How to implement a file type based filesystem?

I want to essentially make it so that you never need to unzip/unrar any files. Currently, I have a Dokan filesystem which can do it given a specific zip file but I wanted to know how I can make it ...
2
votes
3answers
325 views

How do I mount a virtual filesystem in a folder?

I implemented a virtual filesystem using Dokan. I tried to set the drive letter to C but it errors every time. I was wondering if there is a different virtual filesystem which will allow me to do that ...
1
vote
1answer
39 views

Redirect all file IO in Windows

I'm using a virtual file system (PhysFS) and I'd like the entire application to do file IO through this VFS (that includes third-party libraries). How can I redirect all file IO operations (C FILE* ...
1
vote
1answer
122 views

use a virtual file system with Lucene.NET

Is there a way to use a virtual filesystem with Lucene.NET? Based on my (moderate) experience with Lucene, I suspect the answer here is no; but just in case (...) barring that: Or is there an ...
1
vote
2answers
116 views

How to develop an encrypted USB Flash Drive

I need to develop an encrypted USB Flash drive to protect my data. Here is the high level idea: When USB will be plugged in PC, it will show one application, for example "openfile.exe" When I run ...
1
vote
1answer
113 views

Need encrypted virtual filesystem tool

I am currently working on a project where i need to store few files and folders in encrypted manner. This project will be platform independent and hence will be written in Java. Instead of encrypting ...
1
vote
1answer
260 views

How to fix Dokan to implement a Virtual Drive?

Dokan currently does not create a virtual hard disk for its filesystem (i.e. in Device manager, you dont see another disk drive). Anyone have any idea on how to start to correct that?
1
vote
1answer
77 views

Is there already FUSE filesystem that serialise each request to a stream?

Concept: nc -lp 1234 -e fusexmp_server nc 127.0.0.1 1234 -c "fusestream /mnt/tmp" Advantages: Easy implementation of servers in high level language (without need of any arch-dependent things like ...
1
vote
1answer
94 views

`virtual' files

Sometimes I'm downloading big files which have been split into chunks, say, a 1GByte file into ten chunks with 100MByte each.  Currently, I have to concatenate all files into a new file to be able to ...
1
vote
1answer
137 views

Access a large file in a zip archive with HTML in a python-webkit WebView without extracting

I apologize for any confusion from the question title. It's kind of a complex situation with components that are new to me so I'm unsure of how to describe it succinctly. I have some xml data and an ...
1
vote
1answer
682 views

virtual file? in c/c++ or C#

What I would like to do is modify all the files in a directory so they use a standard encryption, requiring a password and a 2nd layer of my own encryption. I would like have my application look at ...
0
votes
1answer
52 views

is there a Windows API to unmount a mount point

I am writing a virtual file system using dokan.lib. This lib do not have unmountPoint function, it has unmountDrive. Either I am looking for a dokan lib which will support unmountpoint call or ...
0
votes
0answers
52 views

fuse_get_context returns null for fuse4Win on win32 application

I am feeding proper arguments to fuse_main_real(), why am I not getting context. How to get the context. Thanks for you time. Edit I have tries several examples available on google code. I am ...
0
votes
1answer
579 views

.htaccess / https redirection, virtual folder access with exceptions

/* THIS would appear to be a duplicate of another question I had asked 10 days back ...