|
Without providing any specifics on how to do this, I can tell you that a Web server will provide a directory listing *if* directory listing is authorized. So, the Web server has to be configured to allow listing. It will typically provide the list as an HTML page. You can test this from a browser by //http:url/ (no page specified). I would start by getting the Web server to provide a listing and then testing with a browser, to see what the output looks like.
Web servers generally *do not* allow listing, to prevent people from seeing everything on the server, so if you don't control the server, you may not be able to get a listing.
The other option is to have whoever is posting the files either use standard names, such as name-2009-01-16-x.xml, where the x is a sequence number 1,2,3,.., or have them place a list of names in an xml file on the server and update the file contents every time they post new files.
|