views:

38

answers:

1

Is there any way to override Win32 File API such as CreateFile()? I want my app to see a virtual file solely for my app, however, the virtual file does not exist actually.

A: 

System-wide? Bad idea. If it's just your app, don't use the standard APIs and implement it yourself. But if the data must persist between sessions, you'll have to store the data somewhere (file, registry, etc.).

Kyle Alons
Not system wide, but solely for my app. I already have a virtual file library, however, it cannot be used by other library which cannot access my virtual file library.
imays
http://www.codeproject.com/KB/system/Paladin.aspx
Kyle Alons