gpt4 book ai didi

c# - 无法访问文件 - WebClient.DownloadFile

转载 作者:太空狗 更新时间:2023-10-29 20:01:40 24 4
gpt4 key购买 nike

所以我已经多次寻找答案,并且对权限问题进行了干预无济于事,但是这段代码仍然不允许我将文件下载到指定路径。

WebClient client = new WebClient();
client.DownLoadFile("http://dl.dropbox.com/u/(My account)/Installer.jar", @"c:\Games\Name\libs");
client.DownLoadFile("http://dl.dropbox.com/u/(My account)/Name.zip", @"c:\Games\Name");

总是给我:“访问路径 'c:\Games\Name\libs' 被拒绝。”

另请注意,使用的是 Windows XP SP3。

最佳答案

您好,我在本地尝试了上面的代码,但得到了同样的错误“访问被拒绝”:

WebClient myWebClient = new WebClient();
myWebClient.DownloadFile("http://localhost:1929/2.png", @"C:\Z\)

尝试在目录末尾指定文件名,在我运行时保存在本地没问题:

WebClient myWebClient = new WebClient();
myWebClient.DownloadFile("http://localhost:1929/2.png", @"C:\Z\FILENAME.jpg")

关于c# - 无法访问文件 - WebClient.DownloadFile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10369463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com