我正在使用以下代码从 Lotus domino 服务器下载 tiff 文件。
string url
= "http://10.1.1.23\\Domino\\ImageDb.nsf\\500-99-9o9\\$File\\abc.tif";
// Create an instance of WebClient
WebClient client = new WebClient();
string filename
= "c:\\test.tif";
client.DownloadFile(url,filename);
但是下载的文件是 4kb 而不是 22kb,当我尝试打开它时,它说它的格式不正确/无效。任何猜测出了什么问题?