vote up 10 vote down star
7

I've recently searched how I could get the application's directory in Java. I've finally found the answer but I've needed surprisingly long because searching for such a generic term isn't easy. I think it would be a good idea to compile a list of how to achieve this in multiple languages.

Feel free to up/downvote if you (don't) like the idea and please contribute if you like it.

Clarification:

There's a fine distinction between the directory that contains the executable file and the current working directory (given by pwd under Unix). I was originally interested in the former but feel free to post methods for determining the latter as well (clarifying which one you mean).

flag
What path do you mean? The current working directory, or the directory in which the executable code resides? – Paul de Vrieze Oct 20 '08 at 12:08
@Paul: Thanks. See update to my question. – Konrad Rudolph Oct 20 '08 at 12:22

12 Answers

vote up 1 vote down

In Java, there are two ways to find the application's path. One is to employ System.getProperty:

System.getProperty("user.dir");

Another possibility is the use of java.io.File:

new java.io.File("").getAbsolutePath();

Yet another possibilty uses reflection:

getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
link|flag
Note that this is a bit misleading/confusing. The three methods you quote can give completely different results! – Zarkonnen Oct 20 '08 at 11:47
Zarkonnen: You're right but as implied in my original posting, I'm no expert. This is a community wiki. Please feel free to edit/correct my answer! – Konrad Rudolph Oct 20 '08 at 12:19
vote up 10 vote down

In .NET (C#, VB, …), you can query the current Assembly instance for its Location. However, this has the executable's file name appended. The following code sanitizes the path (using System.IO and using System.Reflection):

Directory.GetParent(Assembly.GetExecutingAssembly().Location)

Alternatively, you can use the information provided by AppDomain to search for referenced assemblies:

System.AppDomain.CurrentDomain.BaseDirectory

VB allows another shortcut via the My namespace:

My.Application.Info.DirectoryPath
link|flag
Upvoted for : System.AppDomain.CurrentDomain.BaseDirectory – pcampbell May 27 at 18:46
vote up 0 vote down

In bash, the 'pwd' command returns the current working directory.

link|flag
Unfortunately, pwd returns the current working directory which may differ from the path of the script. – Konrad Rudolph Oct 20 '08 at 11:22
The answer is actually found in stackoverflow.com/questions/59895/… – Konrad Rudolph Oct 20 '08 at 11:23
vote up 2 vote down

Delphi

In Windows applications:

Unit Forms;
path := ExtractFilePath(Application.ExeName);

In console applications:

Independent of language, the first command line parameter is the fully qualified executable name:

Unit System;
path := ExtractFilePath(ParamStr(0));
link|flag
vote up 4 vote down

Python

path = os.path.dirname(__file__)

That gets the path of the current module.

link|flag
vote up 0 vote down

in Ruby, the following snippet returns the path of the current source file:

path = File.dirname(__FILE__)
link|flag
vote up 1 vote down

Unix

In unix one can find the path to the executable that was started using the environment variables. It is not necessarily an absolute path, so you would need to combine the current working directory (in the shell: pwd) and/or PATH variable with the value of the 0'th element of the environment.

The value is limited in unix though, as the executable can for example be called through a symbolic link, and only the initial link is used for the environment variable. In general applications on unix are not very robust if they use this for any interesting thing (such as loading resources). On unix, it is common to use hard-coded locations for things, for example a configuration file in /etc where the resource locations are specified.

link|flag
vote up 3 vote down

In Windows, use the WinAPI function GetModuleFileName(). Pass in NULL for the module handle to get the path for the current module.

link|flag
vote up 0 vote down

Libc
In *nix type environment (also Cygwin in Windows):

  #include <unistd.h>

   char *getcwd(char *buf, size_t size);

   char *getwd(char *buf); //deprecated

   char *get_current_dir_name(void);

See man page

link|flag
vote up 0 vote down

In CFML there are two functions for accessing the path of a script:

getBaseTemplatePath()
getCurrentTemplatePath()

Calling getBaseTemplatePath returns the path of the 'base' script - i.e. the one that was requested by the web server.
Calling getCurrentTemplatePath returns the path of the current script - i.e. the one that is currently executing.

Both paths are absolute and contain the full directory+filename of the script.

To determine just the directory, use the function getDirectoryFromPath( ... ) on the results.

So, to determine the directory location of an application, you could do:

<cfset Application.Paths.Root = getDirectoryFromPath( getCurrentTemplatePath() ) />

Inside of the onApplicationStart event for your Application.cfc



To determine the path where the app server running your CFML engine is at, you can access shell commands with cfexecute, so (bearing in mind above discussions on pwd/etc) you can do:

Unix:

<cfexecute name="pwd"/>

for Windows, create a pwd.bat containing text @cd, then:

<cfexecute name="C:\docume~1\myuser\pwd.bat"/>

(Use the variable attribute of cfexecute to store the value instead of outputting to screen.)

link|flag
vote up 3 vote down

In Java the calls to

System.getProperty("user.dir")

and

new java.io.File("").getAbsolutePath();

return the current working directory.

The call to

getClass().getProtectionDomain().getCodeSource().getLocation().getPath();

may return the path to the executable.

Example:

  1. Your application is located at

    C:\MyApp.exe

  2. Open the shell (cmd.exe) and switch to C:\test\subdirectory

  3. Start the application using the command 'C:\MyApp.exe'

  4. The first two calls return 'C:\test\subdirectory' the third call returns 'C:\MyApp.exe'

Be aware the results for getClass()... can be different depending on how you start the application.

When debugging, the result will be the path to the root of the generated class files, for instance

\c:\eclipse\workspaces\YourProject\bin\

The path does not include the directories for the generated class files.

For an executable, for instance created using Launch4J, the result will be the full path and the name of the executable, e.g. 'C:\dir...\YourApplication.exe'.

A complete example to get the application directory without executable name or the corresponding path to the class files when debugging:

String applicationDir = getClass().getProtectionDomain().getCodeSource().getLocation().getPath(); 

if (applicationDir.endsWith(".exe"))
{
	applicationDir = new File(applicationDir).getParent();
}
else
{
	// Add the path to the class files  
	applicationDir += getClass().getName().replace('.', '/');

	// Step one level up as we are only interested in the 
	// directory containing the class files
	applicationDir = new File(applicationDir).getParent();
}
link|flag
vote up 1 vote down

Objective-C Cocoa (Mac OS X, I don't know for iPhone specificities):

NSString * applicationPath = [[NSBundle mainBundle] bundlePath];
link|flag

Your Answer

Get an OpenID
or

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