Results 1 to 9 of 9

Thread: SDK for emulating a file system

  1. #1
    New Member
    Join Date
    Mar 10
    Posts
    7

    Question SDK for emulating a file system

    Hi!
    Does anybody know SDK for emulating a file system?
    Thanks!

  2. #2
    ASP.NET Moderator gep13's Avatar
    Join Date
    Nov 04
    Location
    The Granite City
    Posts
    21,733

    Re: SDK for emulating a file system

    Hey,

    Can you provide more information about what exactly you are trying to achieve.

    Gary

  3. #3
    New Member
    Join Date
    Mar 10
    Posts
    4

    Re: SDK for emulating a file system

    I know one good - BoxedApp SDK. If you'll have questions, ask me.

  4. #4
    Junior Member
    Join Date
    Mar 12
    Posts
    31

    Re: SDK for emulating a file system

    Plz advise me good example how I can use this SDK.

  5. #5
    Junior Member
    Join Date
    Nov 11
    Posts
    20

    Re: SDK for emulating a file system

    Just check samples on the developer's site

  6. #6
    Junior Member
    Join Date
    Mar 12
    Posts
    31

    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?

  7. #7
    Junior Member
    Join Date
    Nov 11
    Posts
    20

    Re: SDK for emulating a file system

    Quote Originally Posted by Jokeman View Post
    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...

  8. #8
    Junior Member
    Join Date
    Mar 12
    Posts
    31

    Re: SDK for emulating a file system

    +1
    Thank you! Problem is solved!

  9. #9
    Junior Member
    Join Date
    Nov 11
    Posts
    20

    Re: SDK for emulating a file system

    You are welcom

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •