vote up 1 vote down star

Hi,

We have some special requirements:

  1. From our application, launch a ClickOnce application. It will download ClickOnce app to user's cache.
  2. After it's done, the main app needs to access some file downloaded into ClickOnce app folder.

Is there any way for the main app to know the location of ClickOnce installation folder?

Thanks, yyff

flag

2 Answers

vote up 0 vote down check

Assuming the Click1 app is yours, you could save to some more accesible location. Normally you can write to User\Documents for example.

link|flag
How? From what I read, developers do not control where ClickOnce app is installed to. In WinXP, it's some folder with random name under user cache. Somehow I need a way to know that folder's name, but not from app that's launched from ClickOnce. – yyff Sep 23 at 19:21
Which is kind of difficult. The question is why the Click1 app doesn't download to for example Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) . – Henk Holterman Sep 23 at 19:43
So is there a way to define download location in Click1 or not? Would be glad to know if there is. – yyff Sep 23 at 19:53
You still haven't answered if you own the click1. – Henk Holterman Sep 23 at 20:10
Yes, we own the Click1 app. – yyff Sep 23 at 20:11
show 2 more comments
vote up 0 vote down

Try the following

using System.Deployment.Application;
...
var dep = ApplicationDeployment.CurrentDeployment;
var path = dep.DataDirectory;

It may not be in the DataDirectory path but one of those properties is almost ceratinly what you are looking for.

link|flag
Is this how the Click1 finds out his own location? – Henk Holterman Sep 23 at 18:25
Thanks, however, your answer is for app that's launched from ClickOnce. In my case, my main app launches ClickOnce app and is a different process. Is there any way? – yyff Sep 23 at 19:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.