Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to get the directory name for a particular file on the drive in java? for example i have a test.java under a test directory on my D drive.how do i find the directory name for this test.java?

share|improve this question

2 Answers

up vote 11 down vote accepted
File file = new File("d:/test/test.java");
File parentDir = file.getParentFile(); // to get the parent dir 
String parentDirName = file.getParent(); // to get the parent dir name

Remember, java.io.File represents directories as well as files.

share|improve this answer
thanks thats wat i was lookin for – Jonathan Jun 9 '10 at 21:19

There is no single way to do this, however you can use the Classloader, ProtectionDomain, and CodeSource to get close.

URL url = Test.class.getProtectionDomain().getCodeSource().getLocation();
// if your Test.java is on the filesystem and not in a jar...
File testJava = new File(url.toURI());
String directory = testJava.getParent();

If it's in a jar, you'll have to parse the URL

edit: fixed a couple typos

share|improve this answer
1  
Since he was asking about "a particular file on the drive" it is a file and not a class and not hidden in a jar or whatever. – mini-me May 6 at 14:53

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.