Reputation: 6120
I want to know all directories in the given http address. How can I get all directory names in the web application? I am using C# in Visual Studio 2010.
Thank you for your attention.
Upvotes: 0
Views: 129
Reputation: 12904
You can't, unless that information is exposed by something like a sitemap and you read this in some manner.
It is not possible to 'query' a webserver, GET and POST are standard operations and for those you will need the address (uri) to GET/POST from/to.
Upvotes: 2