English 中文(简体)
Copying a file from an IsolatedStorage
原标题:

I was just wondering if there is a way to prevent people from copying a file which is stored by using System.IO.IsolatedStorage? To me, I can t think of anyway. Any person can go and grab those files manually. Is there other ways that I am missing?

最佳回答

Isolated storage is linked to the logged in user and stored under their profile only. So with out-of-the-box NTFS ACL s in place, no other user can access these files.

From MSDN:

Data is stored in compartments that are isolated by the current user and by the assembly in which the code exists. Additionally, data can be isolated by domain. Roaming profiles can be used in conjunction with isolated storage so isolated stores will travel with the user s profile.

So, not just any person can copy them, only the person under which context they were created can.

Is that not secure enough?

问题回答

Isolated storage is designed to keep your program data fenced in rather than keeping other applications out, Data is ring fenced from other .net programs running under reduced permission sets. Data is stored in local or roaming user compartments and cannot be accessed via ordinary file streams only via IsolatedStorageFileStream.

In short though if another program really wanted access it could, but you would have to deliberately set out to do so.

For example, your laptop is stolen and there are files in the Isolated Storage.

If the thief run the drive like slave or starts an ubuntu live for example could access to these files.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签