Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent file redirection to VirtualStore for read/write files?

I am using C# with .net 2.0

I am saving my program data in a file under: C:\ProgramData\MyProgramName\fileName.xml

After installing and running my application one time I uninstalled it (during uninstallation I'm removing all the files from "program data") and then I reinstall the application, and ran it.

The strange thing is that my application started as if the files in program data existed - means, I had old data in my app even though the data file was deleted.

When running:

File.Exists("C:\ProgramData\MyProgramName\fileName.xml")

I got "true" even though I knew for sure that the file does not exist.

The thing became stranger when I ran the application as admin and then the file didn't exist.

After a research, I found out that when running my application with no admin privileges instead of getting:

C:\ProgramData\MyProgramName\fileName.xml

I get

C:\Users\userName\AppData\Local\VirtualStore\ProgramData\MyProgramName\fileName.xml

and indeed there was a file that existed from the previous installation (that I obviously didn't delete, because I didn't know it existed).


So just guide me how could I stop this when apps running with no admin right.

I do not want to create any file automatically in VirtualStore folder. Please discuss all the possible ways to stop this.

like image 745
Thomas Avatar asked Aug 05 '13 13:08

Thomas


1 Answers

First, ask yourself, do this need to be globally saved for all users?

If it doesn't have to be, save the file in Application Data instead, you can get the path with Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), it should always reliably expand to C:\Users\Username\AppData\Roaming\. Do note that this path is unique for each user though.

If you have to, you're out of luck. There is no reliable way to store application data for all users without admin rights (or UAC) on any Windows post-XP that's not extremely hacky, like storing your data in the Public user (which may or may not be possible, I can't check right now).

like image 178
Chloride Cull Avatar answered Oct 17 '22 03:10

Chloride Cull