Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a valid method to check if a String represents a path for file or a directory. What are valid directory names in Android? As it comes out, folder names can contain '.' chars, so how does system understand whether there's a file or a folder? Thanks in advance.

share|improve this question

3 Answers

up vote 5 down vote accepted

Assuming path is your String.

First, make sure the path exists by using:

new File(path).exists();

This will tell you if it is a directory:

new File(path).isDirectory();

Similarly, this will tell you if it's a file:

new File(path).isFile();

See File Javadoc

share|improve this answer
As I mentioned in my question, I have only Strings and no File instances, and I can't create them. – Egor Oct 8 '12 at 11:08
1  
path in my example is the String. Why can't you create a File instance? Note that this will not change anything on the filesystem. – Baz Oct 8 '12 at 11:09
Here's a concrete example, I'm trying to create a File using the following path: /mnt/sdcard/arc/root, and for isDirectory() it returns false. What's the issue here? – Egor Oct 8 '12 at 11:19
@Egor Quite hard to tell, since I don't have an Android device. Note that root may be a file. Files don't necessarily have a .something extension. – Baz Oct 8 '12 at 11:22
So I presume your solution doesn't work. root is a directory, but taking only its name and creating File instance doesn't tell me whether it's file or directory. – Egor Oct 8 '12 at 11:24
show 4 more comments

To check if a string represents a path or a file programatically, you should use API methods such as isFile(), isDirectory().

How does system understand whether there's a file or a folder?

I guess, the file and folder entries are kept in a data structure and it's managed by the file system.

share|improve this answer
String path = "Your_Path";
File f = new File(path);

if (f.isDirectory()){



  }else if(f.isFile()){



  }
share|improve this answer

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.