vote up 0 vote down star

I want the location of the current execution project i.e in VB.NET/C# or the current class file's path?

Ok,let me elaborate i got 2 projects in one solution file,lets say A,B are projects, my startup project is B ,and im accessing a class file in A ,now i need to know virtual path of B. because i need it for accessing the resource file coz error pops up when using ExpressionBuilderContext

flag

69% accept rate
What do you need it for? – Grzenio Sep 3 at 10:08
It is worth noting that most paths used if given relative, (eg "config.xml") it is relative to the working directory of the exe – Pondidum Sep 3 at 10:48
yes true ,but i want to do it using ExpressionbuilderContext. – kurozakura Sep 3 at 10:57

3 Answers

vote up 0 vote down

Try one of these:

        Console.WriteLine(Assembly.GetEntryAssembly().CodeBase);
        Console.WriteLine();
        Console.WriteLine(Assembly.GetEntryAssembly().Location);
        Console.WriteLine();
link|flag
vote up 0 vote down

String strPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().CodeBase);

link|flag
Ok,let me elaborate i got 2 projects in one solution file,lets say A,B are projects, my startup project is B ,and im accessing a class file in A ,now i need to know virtual path of B. because i need to for accessing the resource file coz error pops up when using ExpressionBuilderContext – kurozakura Sep 3 at 10:56
vote up 0 vote down

Under VB.net in Visual Studio 2008 I've been using the following :

Application.StartupPath
link|flag

Your Answer

Get an OpenID
or

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