gpt4 book ai didi

c# - 尝试将文件上传到 Ftp 但出现错误 : "file name not allowed"!

转载 作者:行者123 更新时间:2023-11-30 22:16:55 26 4
gpt4 key购买 nike

所以我试图将一个 1kb 的文本文件上传到我的 ftp 服务器,但出现了这个错误:

The remote server returned an error: (553) File name not allowed.

那么我的代码有什么问题吗?

WebClient upload = new WebClient();
upload.Credentials = new NetworkCredential("******", "*********");
upload.UploadFile("ftp://xxx.com/public_html", "G:/adress.txt");

最佳答案

这很难说,因为这是服务器错误而不是代码错误。但是,正如目前所写,您正在尝试上传名为 adress.txt 的文件,使其成为名为 public_html 的文件。我怀疑已经有一个同名的目录,并且冲突正在阻止上传。尝试

upload.UploadFile("ftp://xxx.com/public_html/adress.txt", "G:/adress.txt");

相反。

关于c# - 尝试将文件上传到 Ftp 但出现错误 : "file name not allowed"!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17066607/

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