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:
Hopefully someone can provide some insight.
The GetCurrentDir function returns the current directory. Note: When you are specifying a file in your script, always specify the full path (using the appropriate InstallShield system variable, for example, SRCDIR) rather than depend on the current folder having the appropriate value.
To determine the exact location of your current directory within the file system, go to a shell prompt and type the command pwd.
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.
When you drop a file on to the executable, it will run it from the location of the file you've dropped. For example if you drop C:\Path-To-File\File.txt on to C:\Program\ApplicationA.exe it's like you've done the following from a command prompt:
cd C:\Path-To-File
C:\Program\ApplicationA.exe C:\Path-To-File\File.txt
When you run the application manually (in your example above) you've got control over the directory it's running from which is why it matches what you'd expect.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With