C#做FTP上传时,怎么判断 文件路径 是否存在?

C# 做FTP上传时,怎么判断 FTP上  文件路径 是否存在?
FFIVE
浏览 1295回答 7
7回答

慕尼黑5688855

1 private bool DirectoryExist(string URI) 2 { 3 FtpWebRequest reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(URI)); 4 reqFTP.Credentials = new NetworkCredential("", ""); 5 reqFTP.Method = WebRequestMethods.Ftp.PrintWorkingDirectory; 6 7 reqFTP.UseBinary = true; 8 try 9 { 10 FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse(); 11 response.Close(); 12 return true; 13 } 14 catch(Exception ex) 15 { 16 string e=ex.Message; 17 return false; 18 } 19 }

慕神8447489

File.Exists

当年话下

正是!!!!

30秒到达战场

你确定这个是有用的吗?为什么我执行下来,明明没有这个文件夹,缺返回的是true???
打开App,查看更多内容
随时随地看视频慕课网APP