Looking on the Delphi newsgroups, it appears the best way to GET content from a WebDAV server is to use the built in TIdHTTP.Get. While doing this, the result is HTML and I just want to make sure that this is the best way to retrieve data about the directories and files. If so, then I'll parse it out, but I just want to make sure there isn't a cleaner way that may have JUST the file/folder information for me... And no, as of now I am not looking to use any other components for this.
|
show 2 more comments
feedback
|
|
Answering my own: I think I figured it out - I did a PropFile with allprop and a depth of 1. That seems to give me everything in a current "directory" and I can drill down with that. Unless there is a nicer way (or if I am not using PropFind correctly), I will consider this closed. References that were helpful: | |||
|
feedback
|
TIdWebDAVbut your question asks aboutTIdHTTPinstead. Have you actually looked at usingTIdWebDAVyet? The WebDav protocol uses XML, not HTML. You will have to parse the XML yourself, however you can use XPath to simplify your parsing to extract the info you need. – Remy Lebeau Jan 23 at 3:29TIdWebDAVis aTIdHTTPwrapper that simplifies sending WebDav commands, but you have to parse the output yourself. – Remy Lebeau Jan 23 at 3:34