Questions tagged [userappdatapath]
28 questions
1
vote
1 answer
How to save a image using ImageIO.write() in Linux?
I wanted to save image to user machine while he is launching my java application. for this i have written code as follows :
BufferedImage image = null;
try {
URL url = new URL(logourl);
image = ImageIO.read(url);
…

Swap L
- 698
- 3
- 12
- 27
0
votes
1 answer
To execute a batch file each time a Users login
I've a batch file which does copying of some files in the CommonAppData folder(C:\ProgramData) to the logged in User's Local App Data. What I would like to do is to execute this on each different login. I could find many articles talking about the…

Niranjan
- 813
- 2
- 12
- 33
0
votes
0 answers
How to name path for App Data to use on different computers
I created a simple application to allow users to register, add friends, and send private DM's.
I made the mistake of using local paths relative to my machine to import/export fstream .txt files for storage.
For example, the global list of users is…

Leo
- 51
- 6
0
votes
1 answer
extracting a .zip file into %AppData%\
I am looking to use the same Expand-Archive Powershell cmd to unzip the files but instead of using a local location for eg C:\Program Files\Folder\Folder\Folder\Folder" I am trying to extract the zip file into the logged on users profile so that the…

Craig
- 1
- 1
0
votes
1 answer
Why apps within same solution get different AppData path
I have a one solution, and two projects inside it. Both projects exists in the same namespace, e.g. MyCompanyName. When I call
My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData
this method returns two different paths.
First path…

Aave
- 548
- 1
- 5
- 15
0
votes
2 answers
get applications appdata path without Forms-namespace
I would like to get the AppData path of my current application. I used to do this with Application.UserAppDataPath but it's in the System.Windows.Forms namespace and I want to get rid of that. I need it in the repository layer and its a wpf…

Matthias
- 1,267
- 1
- 15
- 27
0
votes
1 answer
how can I get the value of %APPDATA% using JScript?
how can I get the value (path) of %APPDATA% in Micorosoft JScript?

satya
- 2,537
- 9
- 33
- 43
0
votes
1 answer
Using a Remote Deskdop Connection to run Python, empty html files
I am trying to run my python files from a Remote Desktop Connection (virtual machine?). I copied over a few folders I thought would be relevant and ran Anaconda to install python and the add-ons.
My code runs, but the output is html files and in the…

jenryb
- 2,017
- 12
- 35
- 72
0
votes
1 answer
Getting exception while Creation a text file in Appdata folder, its saying File it is being used by another process
I am writing a text file in Appdata folder, I am creating a folder and creating a text file and in next line I am writing text into the file through StreamWriter. But here I am getting following exception.
The process cannot access the file…

Ashish-BeJovial
- 1,829
- 3
- 38
- 62
0
votes
1 answer
Is there a quick way to locate the SQLite database that my app creates?
I used this blog post as a basis for creating my SQLite tables.
Using the SQL Server Compact/SQLite Toolbox, I can view the created tables nicely.
However, in order to first create the connection in that tool, I had to locate the SQLite database I…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
2 answers
FireBreath Write to AppData LocalLow From Internet Explorer
I have a FireBreath plugin source that somebody wrote that I'm trying to make compatible with Internet Explorer. In this plugin, .flv video is downloaded and then FFMPEG is executed within the Windows CMD.EXE to convert the .flv to another media…
user439441
0
votes
1 answer
VBS Check application data folder for multiple users
At my job, we have an application that we use (Mikogo) that installs into the user directory in the App Data folder, instead of into the Program Files folder.
Mikogo has released an update, so I want to find out which computers it is installed on so…

Randy
- 1,068
- 2
- 14
- 32
-1
votes
1 answer
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
C:/Users/user/AppData/Local/sampleFolder/
but when…

Robin Carlo Catacutan
- 13,249
- 11
- 52
- 85