Tagged Questions
The appdata tag has no wiki summary.
6
votes
2answers
790 views
Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms?
When creating an application that will be targeted to many versions of Windows what is the best practice to determine where application specific data should be stored. Specifically:
Application ...
4
votes
1answer
2k views
How do I reference the Sqlite db file in the App_Data folder for my ASP.NET Web Application?
I'm currently storing my sqlite db file in the App_Data folder as per ASP.NET best pattern and practices.
Currently I'm using the following in the webconfig:
<connectionStrings>
<add ...
3
votes
1answer
2k views
How to use Application Data in an (App.config) connectionString
I've got an SQL Server CE database in a project that I wan't to store somewhere in the %AppData% directory. However I can't find a way to make a reference to the Application Data path in the ...
3
votes
1answer
434 views
Problems with umlauts in python appdata environvent variable
I can't find a correct way to get the environment variable for the appdata path in python.
The problem is that my user name includes special characters (the german ae and ue).
I made a workaround wit ...
2
votes
2answers
387 views
Getting Application Data folder for every user
In my application, every user has its own settings, that I save to a subdirectory in that user's Application Data directory. During uninstall, I want to delete those settings for every user on the ...
2
votes
0answers
108 views
Get %appdata% of remote computer [closed]
Possible Duplicate:
How to expand environment variables remotely with .NET?
I need to get the %appdata% of a remote computer in C#. I know i can do it locally with ...
2
votes
1answer
581 views
Accessing %appdata% with vb.net
How can you access files in %appdata% through vb.net? e.g. C:\Users\Kuzon\AppData\Roaming\program. How would i access that file but on another windows 7 machine, also how would you do it on windows ...
2
votes
3answers
490 views
Moving a VB6's Data folder out of Program Files
I maintain a VB6 application that stores its data (access files) in a subfolder of the application folder. So, when the user installs the application to the default location of C:\Program Files\MyApp ...
2
votes
4answers
257 views
Is there a shared folder in Windows to which non-elevated users have write access?
I know that commonappdata (All Users) can hold system-wide application settings, but under Vista/7 non-elevated users can't write to that directory.
Is there a folder which is shared among users and ...
2
votes
4answers
477 views
How to get the %AppData% folder in C?
As above, how do I get the AppData folder in Windows using C?
I know that for C# you use Environment.SpecialFolder.ApplicationData
2
votes
2answers
1k views
How do i add an App_Data folder in visual studio?
This is a silly question but How do I add an App_Data folder to a project? i have an xsd file that i want to include into the project.
2
votes
2answers
360 views
Allowing administrators to modify user's settings from within my program — what's my best option?
I've been working on making my app easier to use for administrators. One of the things I'd really like to do is allow admins to modify other user's settings from within the program -- while still ...
2
votes
1answer
868 views
SHGetFolderPath() for a specific user
I'm looking for a good way to get the local application data folder for a specific user -- without having to enter the login details for that user.
SHGetFolderPath() can accept an access token for ...
2
votes
1answer
678 views
When should I opt for IsolatedStorage versus AppData file storage?
I've recently discovered the IsolatedStorage facilities in .net, and I'm wondering when I should use them for my application data versus when I should use (e.g.) Application.LocalUserAppDataPath.
One ...
1
vote
1answer
88 views
How To Sign a Jar File for an Applet?
Does Singing a Jar File For an Applet use the same process as signing a Jar file for an application?? If so, can someone tell me how to sign it? I have an Applet that writes to your APPDATA, kinda ...
1
vote
2answers
178 views
Visual Basic how to get to %appdata%
I'm working on a project in Visual Basic and it's going to store all the data in a folder in %appdata%. I'm using Visual Studio 2010 I already tried this:
...
1
vote
1answer
111 views
Should application log files and user generated data files be stored in APPDATA or PROGRAMDATA
We are migrating our APP to Win7. The program generates log files to help us support and also saves a number of dictionary files and settings files that are useful for the user though the user will ...
1
vote
2answers
225 views
What is the environment variable for AppData in NSIS installer script?
I am looking for the environment variable for AppData in NSIS. I need to copy fils to the AppData directory in my installation.
THanks!
1
vote
3answers
365 views
Create folder in APPDATA on Windows Vista/7
I have made an application in WPF and it has user profiles, not related to Windows user profiles. It's quite a simple thing, but I need to store those profile files somewhere. As I read, the preffered ...
1
vote
0answers
113 views
Excel OLEDB /Jet connection strings & %APPDATA%
I have what is likely a common scenario. I have an MS-Access application split into front-end and back-end files. I want to set up users with an Excel spreadsheet that connects to data on the ...
1
vote
2answers
89 views
JavaScript: Retrieving the %APPDIR% Path
Is it possible to retrieve the path of %APPDIR% (in Windows XP: C:\Documents and Settings\UserName\Application Data) in JavaScript?
The solution must be supported by Internet Explorer 6.
Background: ...
1
vote
1answer
168 views
ASP.Net MVC SQLExpress Production Environment Update Scenario
New to actually deploying a Asp.Net MVC web application with sqlexpress in the App_Data folder, how would I handle database updates after it is live and in use.
Here's my scenario and a few ...
1
vote
3answers
624 views
Windows application data directory
With the environment variable %allusersprofile% I can get the directory where common settings are stored. But most programs store their settings in the sub-folder "anwendungsdaten" (German, ...
1
vote
1answer
642 views
Saving session data to ApplicationData Folder (Windows 7/WindowsVista/WindowsXP)
I am trying to save session data to the users local ApplicationData folder, but it Windows just seems to create a new ApplicationData folder with the files inside it wherever it wants. Sometimes it ...
1
vote
1answer
566 views
Writing files in App_Data causes tempdata to be null
I have a small asp.net MVC 1 web app that can store files and create directories in the App_Data directory. When the write operation succeeds, I add a message to the tempdata and do a redirectToRoute. ...
0
votes
1answer
37 views
How to know Computer Profile name using Javascript
I want to get the computer user profile name to put log text on the appData
note: This is just for IE, (currently using this for windows 7 gadget)
The default would be, without profile name is this
...
0
votes
1answer
93 views
How to set default application path value in user scoped settings
In my C# project, I have a user scoped setting for a folder path which I want to set at design time so that it becomes the default value for new users (If i am not mistaken).
I want to set the ...
0
votes
0answers
50 views
User settings in Windows/ WPF applications are not saved
I want to save User-scope settings for a Forms application. I tried adding a .Settings file.
I am facing two problems:
The call to .Save() does not save any values.
The settings I created got ...
0
votes
2answers
68 views
My JApplet can't write to my APPDATA folder
So yeah, I am making a Text-Based RPG, in the form of an applet. This applet writes to your APPDATA directory when opened. It works in the IDE, but when I try it in Firefox, it comes up with an error ...
0
votes
1answer
96 views
Problem writing to users AppData directory
My application writes to the registry in HKEY_LOCAL_MACHINE, so I use a manifest file to utilize the UAC functionality. Though when I write data to the users AppData folder (after the UAC dialog ...
0
votes
1answer
54 views
Why does my dll end up in AppData\Local\Temp\
I have a small SWT based java application. On installation swt-win32-*.dll is installed with my application in C:\Program Files\myapp\win32.
When I looked at my application in process explorer I ...
0
votes
2answers
251 views
Is it possible to save uploaded files in ~/Content? (ASP.NET MVC2)
I've been trying to save incoming uploaded images in ~/Content on my development machine while debugging/testing, but no files are being transferred there. Does the folder allow for images to be ...
0
votes
0answers
90 views
Can't send file from the appdata folder C++
So i was able to get the appdata folder via SHGetKnownFolderPath and converted the memory address it printed to a readable string via
SHGetKnownFolderPath(FOLDERID_RoamingAppData, NULL, NULL, ...
0
votes
1answer
306 views
How to open a folder in %appdata% with C++?
As you all know, the appdata folder is this
C:\Users\*Username*\AppData\Roaming
on windows 7
Since my application will be deployed on all kinds of Windows OSes i need to be able to get the folder ...
0
votes
2answers
1k views
Write to AppData directory using InnoIDE?
I need to write to the:
C:\Users\user\AppData\Roaming\AppName
folder during the setup process. I'm using the InnoIDE program for setup, and it's awesome. However, it seems to be lacking an 'AppData' ...
0
votes
1answer
339 views
Obtaining %appdata% from windows service [C++]
As in the topic - is there any way to get currently logged user appdata environment variable?
In an application there is no problem to do that with SHGetFolderPath() or simply getenv("appdata") but ...
0
votes
1answer
1k views
How to clear user's app data folders with Inno Setup?
When I uninstall my app with my Inno Setup uninstaller, the runtime files created in the user's AppData folder remain. Is it possible to remove them?
0
votes
1answer
302 views
What are the default APPDATA directories each version of Windows?
Is there a list of default APPDATA directories each version of Windows? (XP & up)
I need to know the default directory each OS will return for the following call:
SHGetSpecialFolderLocation( ...
0
votes
1answer
279 views
Deploy SQL Express in App_Data directory
Despite using many sql databases before, I've never actually tried to develop an app with a database in the App_Data directory.
Until now!!
It's a small WCF service project, which has a sql express ...
0
votes
1answer
672 views
Where is Win7's jump list system data stored?
As per Jumplist Extender, I'm trying to prevent other apps from refreshing their jump lists (it's assumed that the user WANTS to do this, seeing as this is a JL editor.) One idea is to look for file ...
0
votes
2answers
109 views
Does app data hide files or create a virtual folder?
My application creates a bunch of temporary .class files and I had been storing these files in my local application directory but I recently started storing these in appData. Everything functions ...
0
votes
1answer
182 views
Can 'Not putting my DB under the 'App_Data' affect the way Linq2Sql works?
I'm experiencing a problem while working with all my projects. I don't get Intellisense with Linq2Sql and, when I write partial classes in the model folder, properties created by the Linq2Sql designer ...
0
votes
1answer
106 views
How do I copy a DB from the server to the application's AppData folder?
I've been working on an ASP.NET application accessing a DB in my local machine.
Now I want to have this DB in the app's AppData folder instead, so I can easily work on it from within VS SQL instance ...
0
votes
1answer
1k views
How to get a given user's AppData directory in C#? [closed]
Possible Duplicate:
How can I get the path of a Windows "special folder" for a specific user?
Is it possible to get the application data directory for a given user who is NOT the ...
-3
votes
3answers
42 views
os.system appdata glitch? [closed]
When I try to use os.system to open a file in appdata it doesnt work. Can anyone explain this?
This is the code
os.system('C:\Users\%s\appdata\LocalHigh\%s'%(user,filename))
#os has been imported ...