File file=new File("c:\\temp\\java\\testfile");
testfile is a file,it's maybe not exists,
i want to get directory c:\\temp\\java\\ using file object
how to do it?
thanks :)
how to do it? thanks :) |
|||
|
|
|
In either case, I'd expect Additionally, if you want to find out whether the original |
|||
|
|
|
File API File.getParent or File.getParentFile should return you Directory of file. Your code should be like :
You can additionally check your parent file is directory using File.isDirectory API
|
||||
|
|
|
|||
|
|