I found solutions for Windows Forms with AppDomain but what would be the equivalent for a WPF Application object?

link|improve this question

Application.Current doesn't exist in Windows Forms... I assume you refer to Application.StartupPath ? – Thomas Levesque Jun 2 '09 at 8:49
feedback

6 Answers

up vote 61 down vote accepted
System.AppDomain.CurrentDomain.BaseDirectory

System.IO.Path.GetDirectoryName(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName)
link|improve this answer
Ah, thanks. Must have overlooked AppDomain somehow. I was looking for it, actually ... – Joey Jun 2 '09 at 12:34
Doesn't appear to be available in VS.Net 2010 / WPF 4 – AndyD273 Aug 19 '11 at 19:32
@AndyD273: Works for me. Are you missing a using directive or an assembly reference? – Helen Aug 28 '11 at 18:45
@Helen: Judging from the upvotes, this is obviously an excellent answer. However, the answer has two ways of getting the app dir. Will they both work equally well? – Christoffer Lette Aug 29 '11 at 15:34
2  
I would use the first alternative. It looks simpler, doesn't have a method call and causes less doubt on what the line actually does when reading. – Filip Oct 21 '11 at 3:11
show 3 more comments
feedback

Here is another:

System.Reflection.Assembly.GetExecutingAssembly().Location
link|improve this answer
This one gets the location after shadow-copying, as stated in the docs. I'm actually not sure if the suggestions in the accepted answer is affected by shadow-copying. – Christoffer Lette Sep 7 '11 at 8:02
feedback

You can also use the first argument of the command line arguments:

String exePath = System.Environment.GetCommandLineArgs()[0]

link|improve this answer
However, note that an "evil" application can modify its command line arguments. – Daniel Rose Apr 20 '11 at 14:34
@Daniel: Why would it do it to itself? Or do you mean a different application? – Merlyn Morgan-Graham Aug 28 '11 at 18:50
@Merlyn: See blogs.msdn.com/b/oldnewthing/archive/2009/11/25/9928372.aspx I'll quote: it is a "conveniently initialized parameter to the process's startup code." So you can deliberately or inadvertently modify that memory location. – Daniel Rose Aug 29 '11 at 7:46
@Daniel: Who can? Another process, or the same process? If you shoot yourself in the foot, it should be easy to track down. I'd call that less evil, and more stupid :) If another process can do it, then that is more interesting. Edit: I don't see anything in that article about modifying a running program's command line - only that the launching process passes it in (not sure it is undesirable for the launching process to change the command line), and that you can query it via WMI. – Merlyn Morgan-Graham Aug 29 '11 at 17:44
feedback

You can also use freely Application.StartupPath from System.Windows.Forms, but you must to add reference for System.Windows.Forms assembly!

link|improve this answer
feedback
String exePath = System.Reflection.Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName;
 string dir = Path.GetDirectoryName(exePath);

Try this!

link|improve this answer
Not pretty, but works. Thanks :-) – Joey Jun 2 '09 at 8:46
feedback

Try this. Don't forget using System.Reflection.

string baseDir = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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