i want to write some code in java to find out if a given url is a file or a directory. how can i do this??
|
URLs themselves don't have the concept of being a "file" or a "directory". The content of a URL is defined by whatever the server responds with when requested. If you get something with a MIME type of |
|||||||||||
|
|
There is simply no notion of a "directory" in any of the URL / URI specs, the HTTP specs or the MIME type registry. So the webserver has no way of telling the client that a URL resolves to a directory ... even if it knows what that means. (And in many cases, the webserver doesn't know / care about directories itself; e.g. a typical RESTful web API doesn't recognize the concept.) Your options are:
|
||||
|
|
|
What you get back from a URL essentially isn't a "file" or a "directory." At best, it's a stream of data with a content type. It generally becomes a "file" on the client side, either by means of saving it to a file system or to a temporary store for display only. Basically, there's no way for a web server to tell a client that something is a directory using HTTP. You're either going to have to create some client-side business logic to infer a "directory" (possibly based on the URL, maybe a lack of file extension?) or use a different protocol for this. |
|||
|
|