如何从 vb.net 中的 Web 文件夹下载文件
我有一个网络文件夹,例如“http://www.myhost.com/software/”,如果我在 IE 中打开这个地址,它会显示该文件夹包含的所有文件。
我想下载所有文件,但不想对文件名称进行硬编码。我知道我可以使用 webclient.DownloadFiles(@address,@filename)
获取文件。是否可以下载所有文件或至少从 Web 文件夹中获取文件名?
I have a web folder e.g. "http://www.myhost.com/software/" if I open this address in IE it show me all files which this folder have.
I want to download all files but I don't want to hard-code name of files. I know I can get the files with webclient.DownloadFiles(@address,@filename)
. Is this possible to download all files or at least get the name of files from the web folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至少,您可以下载 IE 显示的相同文件(请注意,该文件由您的 Web 服务器提供 - 没有标准)并自己解析文件的 HTML,例如使用
webclient.DownloadFile("http ://www.myhost.com/software/", @listfilename)
。要更“专业”地访问文件,您需要查看服务器是否还允许通过 FTP 或 WebDAV 访问,因为 HTTP 没有文件“接口”。
As a minimum you can download the same file IE displays (note that this file is provided by your web server -- there is not a standard) and parse the HTML for the files yourself, e.g. using
webclient.DownloadFile("http://www.myhost.com/software/", @listfilename)
.To access the files more "professionally", you'll need to see if the server also allows access via FTP or WebDAV because HTTP does not have a file "interface".