The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
80 views

How to create appdata folder with C# [closed]

Well, I don't know how to type all this so bear with me please. This is beyond me, I'm still a newb at C#. I basically need to create a folder in the roaming application data of the current user ...
0
votes
1answer
48 views

Difference between Program Data and AppData

Can anyone suggest me a best place to store configuration.xml file instead of placing it in Program files .. I came across Application Data and ProgramData Folders to store the values but I have no ...
0
votes
1answer
33 views

Google Drive appdata and Children.Delete

Looks like items under appdata folder can't be deleted with DirectoryService.Children.Delete - got error "Method not supported for appdata contents [403]". Just wondering why this limit? Should ...
0
votes
0answers
27 views

Changing AppData path (System Property)

I'm working on a launcher for the Minecraft game, what I would like to do is set the APPDATA (windows) location for the game. The value is not really changed, but it's modified for the program that ...
1
vote
1answer
83 views

Saving files to App Data folder

I have written a Visual Basic.Net application in Visual Studio 2012 Ultimate. When this application is installed to the Program Files folder, when files are saved, they are located in this location: ...
0
votes
3answers
61 views

Can't add files to listbox…READ

I'm using a code to show all startup items in listbox with environment variable "%appdata% There is some errors in this code that I need help with.... Check code for commented errors Is there any ...
0
votes
1answer
81 views

Google Drive's appdata size limitation

I am wondering if the new appdata folder supports sub-folders. Is it just a folder with alias 'appdata' and hidden from users? Also can files in appdata folder be shared with other users using the ...
0
votes
0answers
110 views

Find application data directory of vb.net application under test

I am writing NUnit tests for an application that stores reference data XMLs in My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData The problem is that when the NUnit executable runs ...
0
votes
1answer
88 views

Launch a program with a custom appdata folder VBS

How can I launch a program with its own custom appdata folder using a Visual Basic script. I have tried to do this with a batch file: @echo off set APPDATA=%CD%\appdata start program.exe ...
0
votes
1answer
201 views

Why does Umbraco run App_Data\Temp\Razor\inline-xxxx.cshtml logout control after my login?

My Umbraco website has 2 member types. I made a custom login form which checks credentials and authenticates members. Here is my Umbraco razor control code that does that: @using ...
0
votes
2answers
63 views

files generated in system's %appdata% rather than user's %appdata% when running mpi

I am running my application(sample.exe) which uses an external dll(i.e. I do not have the source of this dll) on windows. This dll generates some data in the %appdata% folder. Everything runs fine ...
1
vote
1answer
101 views

Find all users, use them as variable to pull appdata directory list from cmd?

I'm trying to build out a script that will pull the list of users, grab each of their names and then do a directory list for each of their appdata folders. So far I'm thinking that I could just use ...
3
votes
0answers
189 views

Unable to upload data using fruitstrap (iOS device). Segmentation fault: 11

I am trying to upload data to my app using fruitstrap this way. ./fruitstrap upload --bundle-id com.x.x --file /path/to/data-file.xcappdata/ but I get a "Segmentation fault: 11" error. Does anyone ...
1
vote
1answer
395 views

How to download PDF from website and store in %appdata% with Visual Basic .NET

I have a PDF file hosted on a website. I would like my VB.NET program to retrieve the file/download it and store it somewhere in %appdata%. This could be in a folder of it's own like ...
-1
votes
1answer
397 views

Write files to Android data folder [closed]

Is there possible to create an APK that extract/write files into the folder Android/data/org.xbmc.xbmc/files/.xbmc/userdata/ I want to use customized settings in XBMC on my Android phone.
2
votes
1answer
53 views

Crash for the deletion of a database in AppData: Access denied

I have this code for creating a path for a database: static string folder = Application.UserAppDataPath; static string fisier = "prog.db"; string file = folder + "\\" + fisier; And this code for ...
0
votes
1answer
172 views

Creating folder in APPDATA folder on Windows XP (folder is read-only)

In my Java app I find the APPDATA folder and then attempt to create my own subfolder: if (System.getProperty("os.name").startsWith("Windows")) { settingsDir = System.getenv("APPDATA") + ...
0
votes
1answer
105 views

easiest way to get %appdata% path variable in python

sorry if this is a redundant question, writing a Python file that needs to pull from the %APPDATA% directory -- what is the easiest way to find the path to this?
0
votes
1answer
725 views

Setting innerHTML of iframe html encodes text

I have an iframe that I'd like to use to display instapaper articles to the user in my WinJS "store" app. A very high-priority feature of this is that users should be able to read articles downloaded ...
7
votes
3answers
1k views

Finding a Windows user's “true” application data folder?

I have a Delphi 6 application that, like most Windows applications, reads/writes data to the user's "local application data" folder. I use the code below to determine that folder. Up until now, that ...
1
vote
1answer
142 views

Where to store local service appdata?

I'm writing a windows service that will have a 'LocalService' account type. I have a file that stores what it has to do. I also have a windows form GUI where that file is also accessed to add/remove ...
0
votes
0answers
79 views

Force the permission on AppData

I have an app that creates in AppData/Roaming/.... some databases and a copy of the app (setting.db, app.db, application.exe). The problem is with the permission. To some people, when run the app will ...
1
vote
2answers
187 views

How to run a jar file from another jar

I have a jar file that has been turned into a .exe using L4J, and another jar file in appdata. The reason for having two files is that I need an updating mechanism. My question: How do I run the ...
0
votes
0answers
124 views

Can't add a database.mdf to App_Data

I'm trying to create a database.mdf in App_Data but I get the following error: Connections to SQL Server database files (. Mdf) Require SQL Server 2005 Express or SQL Server 2008 Express to be ...
0
votes
1answer
5k views

Where does Windows 8 keep Roaming App data files?

I'm going through the Windows 8 tutorial on managing app lifecycle and state and the tutorial goes through the code for creating roaming appdata for my app which allows me to keep data for my app ...
0
votes
0answers
176 views

How to get the logged in domain username and appdata folder when run as admin

I have a basic Windows Visual Basic console application that is run by a remote script to update a users machine. The script always starts my application as admin so when I try to get the logged-in ...
2
votes
1answer
285 views

SVN info from ASP.NET : 'Can't determine the user's config path'

Got an ASP.NET site which I wish to perform an SVN info call from. My understanding is this error message appears when a user hasn't yet done their basic setup to use SVN. Specifically there is a ...
0
votes
1answer
1k views

VB.net - Running a java application using Shell() and set its appdata folder. multiple commands?

Alright guys I have a copy of minecraft wich is a java program launched by Minecraft.exe. Inside the same folder is my program (lets call it launcher.exe) wich I am programming in VB.net and a Folder ...
0
votes
0answers
25 views

How can I get to the appdata folder in windows with python? [duplicate]

Possible Duplicate: How do I find the Windows common application data folder using Python? So using python in windows on multiple machines where the user name is unknown how can I search ...
1
vote
4answers
114 views

File already being accessed error

I have a few files in \AppData\Roaming that my app is writing to. I create the files when the application starts like this: private void Form1_Load(object sender, EventArgs e) { DirectoryInfo _File = ...
1
vote
1answer
217 views

Alternatives to AppData (Windows) when storing files on other OS

I'm working on a game project in Java and I need to store the config.ini file somewhere other than the executable jar location. I know people usually save them inside AppData on Windows, but I'd like ...
0
votes
2answers
58 views

APPDATA is not returned in Python executed via CGI

I'm using Python with the NLTK toolkit in Apache via CGI. The toolkit need to know the APPDATA directory, but when executed in the server, the os.environ not lists theAPPDATA. When I execute a simple ...
1
vote
1answer
655 views

how to access database kept in App_Data folder

I am getting problem while I try to access MS-SQL database that is kept in "App_Data" folder. My connection string in web.config file is- <add name="ConnectionString" connectionString="Data ...
1
vote
1answer
121 views

SHGetSpecialFolderPath to a System::String^

I'm trying to parse a SHGetSpecialFolderPath into a string, a System::String^ to be precise. I'm now using this code: TCHAR appDataPath; SHGetSpecialFolderPath(0, appDataPath, CSIDL_APPDATA, false); ...
1
vote
3answers
7k views

Windows 7: AppData folder not visible in windows explorer [closed]

I am somewhat new to Windows 7. I am running a foreign language version of Windows 7 (not sure if this matters or not). Anyways, when I use cmd to run a command prompt environment and ...
0
votes
2answers
626 views

How to make NSIS create a file in an %APPDATA% of another user?

I wrote an NSIS installer script for postgresql 9.1. The installer works properly, but after the reboot, the service is not started (right after the install, the database started properly though) I ...
0
votes
0answers
90 views

Hidden registration files on Windows and the Virtual Store

We just discovered a new problem with our registration scheme on Windows 7 64 bit edition. Currently we save a hidden registration file inside our application's resources but it has become clear that ...
3
votes
1answer
7k views

How to write to the common Application Data folder?

I have a Visual Basic 6.0 application that I want to install for All Users, for example, the setting are held in a single spot regardless who logs into the computer. I have the following code to ...
2
votes
1answer
460 views

Application cannot write into %APPDATA% (but user can)

I have an application which needs to create its settings directory inside the user's %APPDATA% directory. To do this it uses code similar to the following: std::string appDataBase = ...
4
votes
3answers
2k views

What is the difference between SpecialFolder.LocalApplicationData SpecialFolder.ApplicationData

On my system %AppData% leads to ApplicationData which is C:\Users\<USER>\AppData\Roaming But there is also a C:\Users\<USER>\AppData\Local And for some more confusion ...
0
votes
1answer
835 views

toList() System.InvalidCastException was unhandled by user code

I have written a WCF service using LINQ to SQL (using the following article at codeporject). I am facing the invalid cast exception when i invoke the .ToList() method of an object after i have already ...
6
votes
2answers
201 views

Why would I want to use the registry? [closed]

As a programmer on a Windows machine, why on earth would I every want to use the registry, as opposed to simply storing appropriate information in the application data directory? The advantages of ...
-2
votes
2answers
657 views

How do I find the %APPDATA% directory?

I currently know of two methods: Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) and Application.UserAppDataPath Are they both the same? Should I use one over the other? ...
3
votes
3answers
733 views

IIS 7.5 application pool uses wrong %APPDATA% for custom user as identity

I want my MVC3 web application to access %APPDATA% (e.g. C:\Users\MyUsername\AppData\Roaming on Windows 7) because I store configuration files there. Therefore I created an application pool in IIS ...
1
vote
0answers
636 views

How to create appdata folders for a service a in setup project (C#)

I am trying to create folders for my C#-service that is being installed with the vs2010 installer/setup project. I have almost all of it working, but I can't figure out how to add the appdata folder. ...
1
vote
0answers
136 views

Best method of communication between your app and your website? PHP, Web service, etc [closed]

I am creating an app which I would like to have communicate with my website. The app will have to get data for a particular app user from the website's database. I am unclear as to the best way to do ...
0
votes
2answers
3k views

How to get the value of Windows' %APPDATA% location variable in Java

I'm trying to make my program save its state in the location set by %APPDATA% when the user is using Windows. However, System.getProperty("temp.dir"); does not return that. How do I get the value of ...
0
votes
1answer
111 views

How To collect iPhone App information

There are some apps that introduce other popular applications. I'm really surprised that when I change the cost of my application, the introducing app shows the new cost of mine really quickly. How ...
0
votes
1answer
387 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
969 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 ...

1 2