请尝试从HTTPS网站下载文件 我创建了一个HTTP管理器,用我的密码和用户名连接到网站。 现在我该怎么做才能使用某种格式的文件并转储到我的计算机上的特定文件夹中?
答案 0 :(得分:1)
答案 1 :(得分:0)
如下:
Dim wc As WebClient = New WebClient()
wc.Credentials = New System.Net.NetworkCredential("user-id", "password", "domain")
wc.DownloadFile("https://www.portal.zzz.com/sites/Document area/fff.xlsx", "C:\fff.xlsx")