Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the name of the currently running program, that is the executable name of the program. In C/C++ you get it from args[0].

share|improve this question

13 Answers

up vote 80 down vote accepted
System.AppDomain.CurrentDomain.FriendlyName
share|improve this answer
88  
as opposed to CurrentDomain.ScaryName :) – QueueHammer Apr 7 '10 at 18:37
10  
Beware of accepted answer. We've had issues with using System.AppDomain.CurrentDomain.FriendlyName under Click-Once deployed applications. For us, this is returning "DefaultDomain", and not the original exe name. – Gaspode Apr 13 '10 at 14:30
2  
@JustSmith: For amusement, try CurrentDomain.StarWarsName – Jeff Yates Nov 3 '10 at 14:19
10  
We used this in the end: string file = object_of_type_in_application_assembly.GetType().Assembly.Location; string app = System.IO.Path.GetFileNameWithoutExtension( file ); – Gaspode May 10 '11 at 15:10
1  
FriendlyName can be set to anything. Also getting the assembly location may not be enough if you have an exe with several dlls. Furthermore if you use several AppDomain, Assembly.GetCallingAssembly() returns null. – user276648 May 16 '12 at 1:19
show 5 more comments

System.Diagnostics.Process.GetCurrentProcess() gets the currently running process. You can use the ProcessName property to figure out the name. Below is a sample Console app.

using System;
using System.Diagnostics;

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine(Process.GetCurrentProcess().ProcessName);
        Console.ReadLine();
    }
}
share|improve this answer
19  
Better use Process.GetCurrentProcess().MainModule.FileName – KindDragon Nov 30 '10 at 17:12
Process.GetCurrentProcess().MainModule.FileName works perfectly from within an Excel Addin (ExcelDNA) – earcam Mar 15 '12 at 10:24
This approach will fail when used on the Mono runtime; the process name for applications running on Mono will always be some variant of .../bin/mono on *nixes or .../mono.exe on Windows. – cdhowie Oct 21 '12 at 20:11

This should suffice:

Environment.GetCommandLineArgs()[0];
share|improve this answer
Hmm, this returns (when run from vs.net and using the debug hosting thing), the location and name of the filename.vshost.exe ... that is indeed the file that is executing at this time ) – Frederik Gheysels Mar 5 '09 at 21:05
4  
This the best answer for me because Environment.GetCommandLineArgs() is the exact C# analogue of argv from C/C++. – Frederick The Fool Jun 3 '12 at 6:45
Agreed! best answer. I have a need to get Environment.GetCommandLineArgs()[1]; – Jerry Liang Mar 16 at 4:02

System.AppDomain.CurrentDomain.FriendlyName - Returns the filename with extension (e.g. MyApp.exe).

System.Diagnostics.Process.GetCurrentProcess().ProcessName - Returns the filename without extension (e.g. MyApp).

System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName - Returns the full path and filename (e.g. C:\Examples\Processes\MyApp.exe). You could then pass this into System.IO.Path.GetFileName() or System.IO.Path.GetFileNameWithoutExtension() to achieve the same results as the above.

share|improve this answer

Try this:

System.Reflection.Assembly.GetExecutingAssembly()

This returns you a System.Reflection.Assembly instance that has all the data you could ever want to know about the current application. I think that the Location property might get what you are after specifically.

share|improve this answer
3  
It might be safer to use CodeBase instead of Location in case .NET's shadow copy feature is active. See blogs.msdn.com/suzcook/archive/2003/06/26/… – 0xA3 Aug 12 '09 at 9:28
10  
Beware of GetExecutingAssembly(): if you call this from a library assembly, it returns the name of the library assembly, which is different from the name of the entry assembly (i.e. the original executable). If you use GetEntryAssembly(), it returns the name of the actual executable, but it throws an exception if the process is running under WCF (admittedly a rare situation). For the most robust code, use Process.GetCurrentProcess().ProcessName. – Gravitas Nov 3 '10 at 12:01
@Gravitas: Certainly not, any executable that is running "interpreted", e.g. with /usr/bin/mono will have the wrong process name. Also ProcessName won't work with windows services. If you use it in a library, use GetCallingAssembly. – Quandary Mar 6 at 20:15
  • System.Reflection.Assembly.GetEntryAssembly().Location returns location of exe name if assembly is not loaded from memory.
  • System.Reflection.Assembly.GetEntryAssembly().CodeBase returns location as URL.
share|improve this answer
Tested, this works 100%, even if its called from within a C# library. – Gravitas Nov 3 '10 at 10:58
GetEntryAssembly() returns null if you're not in the main AppDomain. – user276648 May 16 '12 at 1:20

This is the code which worked for me:

string fullName = Assembly.GetEntryAssembly().Location;
string myName = Path.GetFileNameWithoutExtension(fullName);

All the examples above gave me the processName with vshost or the running dll name.

share|improve this answer
1  
Your answer is very good. There is a small typo. Change "myFullName" to "fullName". – Lee Grissom Sep 27 '12 at 0:00
Thank you Lee, I have changed it. – Tal Segal Sep 27 '12 at 7:50

You can use Environment.GetCommandLineArgs() to obtain the arguments and Environment.CommandLine to obtain the actual command line as entered.

Also, you can use Assembly.GetEntryAssembly() or Process.GetCurrentProcess().

However, when debugging, you should be careful as this final example may give your debugger's executable name (depending on how you attach the debugger) rather than your executable, as may the other examples.

share|improve this answer
4  
Beware of GetExecutingAssembly(): if you call this from a library assembly, it returns the name of the library assembly, which is different from the name of the entry assembly (i.e. the original executable). If you use GetEntryAssembly(), it returns the name of the actual executable, but it throws an exception if the process is running under WCF (admittedly a rare situation). For the most robust code, use Process.GetCurrentProcess().ProcessName. – Gravitas Nov 3 '10 at 12:02
@Gravitas: good point - wow, it's been a while since I wrote this! :D I'll edit accordingly – Jeff Yates Nov 3 '10 at 14:17
Environment.CommandLine gives the absolute path, not the entered command line, at least on Mono/Linux. – Mechanical snail Dec 9 '12 at 0:14
@Mechanicalsnail: Sounds like Mono doesn't quite follow the documentation. Interesting. – Jeff Yates Dec 10 '12 at 15:29

Couple more options:

  • System.Reflection.Assembly.GetExecutingAssembly().GetName().Name
  • Path.GetFileName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase
share|improve this answer

When uncertain or in doubt, run in circles, scream and shout.

class Ourself
{
    public static string OurFileName() {
        System.Reflection.Assembly _objParentAssembly;

        if (System.Reflection.Assembly.GetEntryAssembly() == null)
            _objParentAssembly = System.Reflection.Assembly.GetCallingAssembly();
        else
            _objParentAssembly = System.Reflection.Assembly.GetEntryAssembly();

        if (_objParentAssembly.CodeBase.StartsWith("http://"))
            throw new System.IO.IOException("Deployed from URL");

        if (System.IO.File.Exists(_objParentAssembly.Location))
            return _objParentAssembly.Location;
        if (System.IO.File.Exists(System.AppDomain.CurrentDomain.BaseDirectory + System.AppDomain.CurrentDomain.FriendlyName))
            return System.AppDomain.CurrentDomain.BaseDirectory + System.AppDomain.CurrentDomain.FriendlyName;
        if (System.IO.File.Exists(System.Reflection.Assembly.GetExecutingAssembly().Location))
            return System.Reflection.Assembly.GetExecutingAssembly().Location;

        throw new System.IO.IOException("Assembly not found");
    }
}

I can't claim to have tested each option, but it doesn't do anything stupid like returning the vhost during debugging sessions.

share|improve this answer
+1 for amusement. :-) I would hardly use this code, though, unless I'm writing a really generic library that has no idea about its environment (and then it probably wouldn't be a good idea to maintain whatever global state you were going to use the name for). – Andrey Tarantsov Mar 22 at 8:57

Is this what you want:

Assembly.GetExecutingAssembly ().Location
share|improve this answer
4  
Beware of GetExecutingAssembly(): if you call this from a library assembly, it returns the name of the library assembly, which is different from the name of the entry assembly (i.e. the original executable). If you use GetEntryAssembly(), it returns the name of the actual executable, but it throws an exception if the process is running under WCF (admittedly a rare situation). For the most robust code, use Process.GetCurrentProcess().ProcessName. – Gravitas Nov 3 '10 at 12:02

IF you are looking for the full path information of your executable, the reliable way to do it is to use the following:

   var executable = System.Diagnostics.Process.GetCurrentProcess().MainModule
                       .FileName.Replace(".vshost", "");

This eliminates any issues with intermediary dlls, vshost, etc.

share|improve this answer
System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name;

will give you FileName of your app like; "MyApplication.exe"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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