I can get a list of filenames from a directory in my web application using DirectoryInfo.GetFiles.
The DirectoryInfo constructor takes a path argument, so the code to do this must be executing in the app directory.
Question: how can I get similar information via http from a directory outside my app directory?
I assume I can use webclient somehow to do this, but haven't been able to find a method that will perform the desired function.
Appreciate suggestions.
Go to the complete details ...