Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. File System Library

File System Library

Scheduled Pinned Locked Moved .NET (Core and Framework)
csharphelpquestion
9 Posts 6 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    Najeeb Shaikh
    wrote on last edited by
    #1

    Hello, Platform: DotNet with C#. I was wondering if there is an open source library that my application can link with, which would allow me to have my own encrypted file system and which would appear as a single file within the host file system? (Any license will do, including GPL.) My application needs to save a large number of files that should not be "peekable" by any of the IT admins. I checked up on Fuse, however, I am looking specifically for a DotNet option. Any help would be appreciated. Thanks, N

    Najeeb Shaikh

    L C P A 4 Replies Last reply
    0
    • N Najeeb Shaikh

      Hello, Platform: DotNet with C#. I was wondering if there is an open source library that my application can link with, which would allow me to have my own encrypted file system and which would appear as a single file within the host file system? (Any license will do, including GPL.) My application needs to save a large number of files that should not be "peekable" by any of the IT admins. I checked up on Fuse, however, I am looking specifically for a DotNet option. Any help would be appreciated. Thanks, N

      Najeeb Shaikh

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Your program would contain the code to access the files, and they could just decompile it. They're IT admins, not script kiddies, they will find the way to decrypt the files, you can only delay them

      N 1 Reply Last reply
      0
      • L Lost User

        Your program would contain the code to access the files, and they could just decompile it. They're IT admins, not script kiddies, they will find the way to decrypt the files, you can only delay them

        N Offline
        N Offline
        Najeeb Shaikh
        wrote on last edited by
        #3

        Yeah, sure, thanks for the information. :) However there may be multiple deployment scenarios that I do not want to get into here, as also obfuscation. Suffice it to say that I'm just looking for a basic file system that I can link to. Any help here would be much appreciated. Thanks in advance. N

        Najeeb Shaikh

        modified on Friday, September 25, 2009 2:26 AM

        H 1 Reply Last reply
        0
        • N Najeeb Shaikh

          Yeah, sure, thanks for the information. :) However there may be multiple deployment scenarios that I do not want to get into here, as also obfuscation. Suffice it to say that I'm just looking for a basic file system that I can link to. Any help here would be much appreciated. Thanks in advance. N

          Najeeb Shaikh

          modified on Friday, September 25, 2009 2:26 AM

          H Offline
          H Offline
          Henry Minute
          wrote on last edited by
          #4

          You could always use an encrypted *.zip. There are plenty of 'zip' libraries for .NET, just google.

          Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

          1 Reply Last reply
          0
          • N Najeeb Shaikh

            Hello, Platform: DotNet with C#. I was wondering if there is an open source library that my application can link with, which would allow me to have my own encrypted file system and which would appear as a single file within the host file system? (Any license will do, including GPL.) My application needs to save a large number of files that should not be "peekable" by any of the IT admins. I checked up on Fuse, however, I am looking specifically for a DotNet option. Any help would be appreciated. Thanks, N

            Najeeb Shaikh

            C Offline
            C Offline
            cmk
            wrote on last edited by
            #5

            You could always create a database filesystem.

            ...cmk The idea that I can be presented with a problem, set out to logically solve it with the tools at hand, and wind up with a program that could not be legally used because someone else followed the same logical steps some years ago and filed for a patent on it is horrifying. - John Carmack

            1 Reply Last reply
            0
            • N Najeeb Shaikh

              Hello, Platform: DotNet with C#. I was wondering if there is an open source library that my application can link with, which would allow me to have my own encrypted file system and which would appear as a single file within the host file system? (Any license will do, including GPL.) My application needs to save a large number of files that should not be "peekable" by any of the IT admins. I checked up on Fuse, however, I am looking specifically for a DotNet option. Any help would be appreciated. Thanks, N

              Najeeb Shaikh

              P Offline
              P Offline
              PIEBALDconsult
              wrote on last edited by
              #6

              Store them in a directory called "Things I need the SysAdmins to work on". Or use a database.

              N 1 Reply Last reply
              0
              • P PIEBALDconsult

                Store them in a directory called "Things I need the SysAdmins to work on". Or use a database.

                N Offline
                N Offline
                Najeeb Shaikh
                wrote on last edited by
                #7

                Sorry about the delay in replying... a very long weekend here in India. BTW, found something [here]. Seems to be worth looking into.

                Najeeb Shaikh

                1 Reply Last reply
                0
                • N Najeeb Shaikh

                  Hello, Platform: DotNet with C#. I was wondering if there is an open source library that my application can link with, which would allow me to have my own encrypted file system and which would appear as a single file within the host file system? (Any license will do, including GPL.) My application needs to save a large number of files that should not be "peekable" by any of the IT admins. I checked up on Fuse, however, I am looking specifically for a DotNet option. Any help would be appreciated. Thanks, N

                  Najeeb Shaikh

                  A Offline
                  A Offline
                  AlliedBits
                  wrote on last edited by
                  #8

                  Callback File System with source. Although not free, it's a feature-rich, maintained and updated SDK that lets you create virtual file systems in Windows. .NET API is available.

                  N 1 Reply Last reply
                  0
                  • A AlliedBits

                    Callback File System with source. Although not free, it's a feature-rich, maintained and updated SDK that lets you create virtual file systems in Windows. .NET API is available.

                    N Offline
                    N Offline
                    Najeeb Shaikh
                    wrote on last edited by
                    #9

                    Thanks for this! Looking into it.

                    Najeeb Shaikh

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups