all groups > visual studio .net general > october 2007 >
You're in the

visual studio .net general

group:

ClickOnce Installation - Finding 'data' directory



ClickOnce Installation - Finding 'data' directory jd
10/26/2007 7:56:27 AM
visual studio .net general: Hi, we're trying to get to grips with using ClickOnce installers and
are having some problems. Once installed, the majority of the
application will reside in the following directory:

C:\Documents and Settings\<username>\Local Settings\Apps\2.0\<x>\<y>
\<z>

where <x>, <y> and <z> are seamingly random strings. The installation
also keeps some files in a 'data' directory:

C:\Documents and Settings\<username>\Local Settings\Apps\2.0\Data\<x>
\<y>\<z>\Data

where <x>, <y> and <z> are again, seamingly random strings, which
differ to the path to the executable.

Whilst it is possible to get the first path relatively easily from
looking up the current directory, I've not found a way to obtain the
path to the 'data' folder.

Whilst searching I found one recommendation which claimed one could
use the following:

(string)AppDomain.CurrentDomain.GetData("DataDirectory")

However, this always appears to return null.

Can anyone shed any light on how one can obtain the data directory
path?

Many thanks in advance.

JD
Re: ClickOnce Installation - Finding 'data' directory Mel
10/26/2007 12:53:40 PM
I use this with ClickOnce

using System.Deployment.Application;


public static string GetDataDirectory()
{
if (ApplicationDeployment.IsNotworkDeployed)
{
return ApplicationDeployment.CurrentDeployment.DataDirectory;
}
else
Application.StartupPath;
}

[quoted text, click to view]

Re: ClickOnce Installation - Finding 'data' directory Gigasoft
10/26/2007 3:18:49 PM
Hi,

I've heard this has been helpful learning about Click-Once.

http://www.code-magazine.com/Article.aspx?quickid=0611041

best regards,

Robert Dede
Gigasoft, Inc.
www.gigasoft.com



[quoted text, click to view]

AddThis Social Bookmark Button