SDK for emulating a file system
Hi!
Does anybody know SDK for emulating a file system?
Thanks!
Re: SDK for emulating a file system
Hey,
Can you provide more information about what exactly you are trying to achieve.
Gary
Re: SDK for emulating a file system
I know one good - BoxedApp SDK. If you'll have questions, ask me.
Re: SDK for emulating a file system
Plz advise me good example how I can use this SDK.
Re: SDK for emulating a file system
Just check samples on the developer's site
Re: SDK for emulating a file system
Another exe (not my program) can access the virtual file packed by my program? I assume the another exe also uses BoxedAppSdk.dll to write virtual system. If can, how to protect my file?
Re: SDK for emulating a file system
Quote:
Originally Posted by
Jokeman
Another exe (not my program) can access the virtual file packed by my program? I assume the another exe also uses BoxedAppSdk.dll to write virtual system. If can, how to protect my file?
1 allow writing
BoxedAppSDK_EnableOption(
DEF_BOXEDAPPSDK_OPTION__EMBED_BOXEDAPP_IN_CHILD_PROCESSES,
TRUE);
...
2 deny writing
BoxedAppSDK_EnableOption(
DEF_BOXEDAPPSDK_OPTION__EMBED_BOXEDAPP_IN_CHILD_PROCESSES,
FALSE);
I think you should to use second way... :)
Re: SDK for emulating a file system
+1 :thumb:
Thank you! Problem is solved!
Re: SDK for emulating a file system