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.
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.
|
|
|
Assuming First, make sure the path exists by using:
This will tell you if it is a directory:
Similarly, this will tell you if it's a file:
See |
|||||||||||||
|
|
To check if a string represents a path or a file programatically, you should use API methods such as
I guess, the file and folder entries are kept in a data structure and it's managed by the file system. |
|||
|
|
|
|||
|
|