Directory.GetCurrentDirectory() returns different results based on command line arguments

.net, .net-4.5, c#, command-line-arguments

Solution

I think the problem here is your expectation. In particular, this bit:

It will output the current directory the application resides in.

That is not what I expect from `GetCurrentDirectory()`. The current directory is a feature of the calling context, not the application. If I run the executable via a full or relative path (rather than just `foo.exe`), I expect `GetCurrentDirectory()` to return the directory that I am in - not the directory that the application is in. In the case of dragging files over it: frankly, `GetCurrentDirectory()` is largely undefined, but the directory of the first file is not unreasonable.

Problem

I'm hoping someone can explain why Directory.GetCurrentDirectory() returns different results based on how I pass my command line arguments to the application (running with args vs dragging a folder over the app.exe) To jump right into it consider this piece of code: ``` public class Program { static void Main(string[] args) { Console.WriteLine("The current directory is {0}", Directory.GetCurrentDirectory()); if(args != null && args.Any()) Console.WriteLine("Command line arguments are {0}", String.Join(", ", args)); Console.ReadLine(); } } ``` If you build and run this using the command prompt as shown below the output is what you'd expect. It will output the current directory the application resides in. ``` C:\Projects\ArgumentTest\ApplicationA\bin\Debug\ApplicationA.exe C:\mydirectory The current directory is C:\Projects\ArgumentTest\ApplicationA\bin\Debug\ Command line arguments are C:\mydirectory ``` If you build and run this program by dragging files or folders over the application you get different results. Instead of returning the expected result instead Directory.GetCurrentDirectory() returns the path to the first file you've dragged over the application. I've currently got a work around for this issue however, I am keen to understand why this is happening. Other info: - .NET 4.5 - Windows 2012R2 (Virtual machine) - Full administrator rights on the machine Hopefully someone can provide some insight.

Original source