Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
16k views

How do I find the Windows common application data folder using Python?

I would like my application to store some data for access by all users. Using Python, how can I find where the data should go?
10
votes
4answers
1k views

Where to put common writable application files?

I thought that CSIDL_COMMON_APPDATA\company\product should be the place to put files that are common for all users of the application and that the application can modify, however, on Vista this is a ...
3
votes
3answers
399 views

Shared data location for Linux and Mac OS X

On Windows, there is a standard location for application data that is shared in common with all users on the machine (i.e. in Vista/7, (root):\ProgramData). I'm looking for a way to get such a folder ...
2
votes
3answers
78 views

Path for storing the 'per machine' application details

My application needs to write some information to a file and keep it common to the machine(common to all users). Currently I stored it in C:\Documents and Settings\All Users\Application Data But the ...
2
votes
2answers
427 views

Where to save application data in .NET application

My application is something similar to a Contact Manager. Let's say a user can enter contacts with their addresses. I have the code and technology to save my contacts to a file. But where do I save ...
2
votes
3answers
88 views

Is there a standard practice for storing default application data?

Our application includes a default set of data. The default data includes coefficients and other factors that are unlikely to ever change but still need to be update-able by the user. Currently, ...
2
votes
2answers
1k views

How do I get the application data path in Windows using C++?

I looked all over the internet and there doesn't seem to be a decent solution that I could find. I want to be able to programmatically in C++ obtain the path "%ALLUSERSPROFILE%\Application Data" that ...
2
votes
1answer
867 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
3answers
817 views

Is there a way to keep files in App_Data from overwriting newer files when publishing?

I use an XML file in App_Data in conjunction with a Repeater on the main page of an intranet application allow me to display messages to users when they logon about application status, maintenance, ...
1
vote
3answers
73 views

Java - where to put application data?

I'm writing a Java application which requires a number of resource files (there will be about 100 files of 20-40K each). They are not edited by the user, but will require periodic updates (the ...
1
vote
2answers
376 views

python: where to put application data that can be edited by computer users

I'm working on a really simple python package for our internal use, and want to package it as a .egg file, and when it's installed/used I want it to access a text file that is placed in an appropriate ...
0
votes
2answers
68 views

Where should I store machine-wide application settings for non-roaming users?

I have a WPF application that must run for all users of a machine with the same settings. The settings must be read/write. I have previously been storing user configuration settings in ...
0
votes
0answers
18 views

move application to terminal server: ApplicationData

I need to move an application to a TS environment. The application uses some user-specific data. Is it safe to continue using ApplicationData folder? Is there any caveats? Thanks
0
votes
3answers
116 views

create unique Application Data directory for each instance of an application

I have written a c# application that it is installed as many instances, on different directories defined by the user. e.g. C:\Program Files(x86)\MyApp1 C:\Program Files(x86)\MyApp2 C:\MyApp1 ...
0
votes
0answers
141 views

Just an experiment changing the application data path

When I change the Appication Data path in windows xp registry to a network folder I get this error message on the next system startup: "windows cannot load the user's profile but has logged you with ...
0
votes
1answer
872 views

AppData\Roaming\ Folder absent on Vista

The application I am working with writes to the User\Application Data folder on XP and the AppData\Roaming folder on Vista. On one of the Vista machines the AppData\Roaming folder is not present. As a ...