You are here

APPDATA redirect

4 posts / 0 new
Last post
darksabre76
darksabre76's picture
Offline
Last seen: 1 week 3 days ago
Developer
Joined: 2011-04-19 23:28
APPDATA redirect

I have a quick question for the devs regarding environment variables. Is it in bad form to have %APPDATA% redirect to somewhere to eliminate the need for file and directory moves? I only ask because it seems easier to redefine environment variables like APPDATA, LOCALAPPDATA, and USERPROFILE and not have to worry about moving large amounts of files.

John T. Haller
John T. Haller's picture
Online
Last seen: 15 min 9 sec ago
AdminDeveloperModeratorTranslator
Joined: 2005-11-28 22:21
Depends

It depends. APPDATA redirects don't always work for one. And the environment is passed from one process to another.

So, we have a game that we use an APPDATA redirect on, but it calls nothing externally at all. But, if that same game had a link to their website in the About window, it could spawn a local browser thinking APPDATA was on your flash drive instead of the local PC and create a ton of files. Or possibly not even launch. So, it gets messy very quickly.

Sometimes, the impossible can become possible, if you're awesome!

darksabre76
darksabre76's picture
Offline
Last seen: 1 week 3 days ago
Developer
Joined: 2011-04-19 23:28
Makes sense

I never really thought about it that way. I ask because there are a couple of programs I want to try to make portable that store a LOT of data in APPDATA and have no command line switches to move it elsewhere.

Magibon
Offline
Last seen: 10 years 4 months ago
Joined: 2011-12-06 07:57
Junctions

you have to learn NSIS and write your own launcher, but i use Junctions.nsh.

I only use it for extreme cases, where the size of the folder is detrimental to the speed of the app.

Log in or register to post comments