|
Using WiX (Windows Installer XML) I have created an MSI installer which installs Word templates into the users Application Data folder, e.g. on Windows XP
C:\Documents and Settings\<user>\Application Data\Microsoft\Templates
I'm retrieving the path...
Started by divo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The word template folder is not always
[AppDataFolder]\Microsoft\Templates
This is because the template folder can be configured under tools - options - file locations - user templates/library/aa370905(VS.85).aspx#system....
folder"...
|
|
I'd like to compile an extensive list of folders to look through in Windows where user data might be hiding, specifically when migrating to a new machine or backing up your data to reload your existing machine with a reformat. Should include system settings...
Started by squillman on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at serverfault):
You ....
Most user date should end up in the appropriate \Documents and Settings\ folder (\Users or Application Data - many a user has gotten angry with me because I forgot to grab their IE bookmarks when migrating or recovering data.
|
|
I am in the process of (finally) loading my App onto an iPhone device for testing. So far I have only tested the App in the simulator. The application is data-centric and uses an SQLite database. I have created an appropriate SQLite database with sample...
Started by Mark on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Why not add it to your application bundle? Right-click on the Resources folder in your project-only, it's up to you to copy it over to your apps document folder (on the device or simulator, same document folder whenever you change....
|
Ask your Facebook Friends
|
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.
Started by burnt1ce on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Right click on the project, add new folder and title it "AppData"
App_Data only exists for ASP.NET for the web site/app and pick "Add ASP.NET Folder" - this opens up a context submenu, which should contain "App_Data" as one....
|
|
How can I get the Path of Current User's Application Data Folder?
Started by shahjapan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Solution.
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
I was not able to search the question in Stack Overflow but Google Provided me the solution on StackOveflow it self .
|
|
In general,
Using VBA, how do I determine where the Current users Application Data folder is?
The FileSystemObjects special folders only knows about 3 folders
WindowsFolder SystemFolder TemporaryFolder Specifically, I need a Word Macro to copy a file ...
Started by Binary Worrier on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The USERPROFILE via
Environ("USERPROFILE")
Connect this with the "Application Data" directory (which has a standard, specific name) to get what you want
CStr(Environ("USERPROFILE") & "\Application Data")
For more.
|
|
To Reproduce: 1. Create an asp.net website. 2. Compile and browse the default page. Keep the browser open. 3. Add a file to the app_data folder. 4. Refresh the default page. This should be fast...no recompile. 5. Delete the file from the app_data folder...
Started by rcravens on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
If you.
This by design, the app_data folder along with others are "special" asp.net folders.
|
|
In ASP.Net there is the app_data folder which is not accessible to users via the web. I would like to store a file in this folder, and read from this file by using a class that I have in the App_Code folder.
Keep in mind that the current working directory...
Started by Brian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can access the App_Data folder like so:
string appdatafolder = Path.Combine(HttpContext.Current.Request.PhysicalApplicationPath, "App_Data");
I realise that this uses the HttpContext object, however.
|
|
Ok, is there a way for the PHP user (www-data) to gain access to other parts of the server, for example, /home/username/another_folder/ ?? Thanks in Advance.
Will
EDIT: Do I just add www-data to another group?? Or something like that, or is there another...
Started by lucha libre on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
folder to www-data (if www-data is its own group.)
You could change the user ownership of that folderyou can create another group and add the www-data (if your webserver runs under www-data user a group ("me_and_web....
|
|
My VB.NET 2008, .NET 3.5 application is using an app.config with settings defined as User. As expected, it created the folder:
C:\Documents and Settings\<user>\Local Settings\Application Data\<company name>\
In this folder are the sub-folders...
Started by HardCode on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If its got any ifs in it
Does your company name have spaces in it? I know that spaces in folder.
|