本文介绍了如何使用FTP检查目录是否存在?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

帮我使用FTP检查目录

Help me to check the directory using FTP

using BytesRoad.Net.Ftp;

FtpClient ftpClient = new FtpClient();
// use passive mode
ftpClient.PassiveMode = true;

int timeout = 0;
// connect to the specified FTP server
ftpClient.Connect(timeout,"URL ", 11 );
ftpClient.Login(timeout,USERNAME,PASSWORD);

rootDirectory = ftpClient.GetWorkingDirectory(timeout);
target = rootDirectory + "/testfolder " ;



我需要检查"target(testfolder)"是否存在
保存测试文档文件之前.
没有像directoryexists这样的扩展名.



I need to check the "target(testfolder)" is exists or not
before saving the test document file.
There is no extensions like directoryexists.

string file_to_save = target + "/test.doc";
// synchronously upload the file
ftpClient.PutFile(0, file_to_save , @"C:\test.doc" );
ftpClient.Disconnect(timeout);



谢谢
SwaxRak



Thanks
SwaxRak

推荐答案


这篇关于如何使用FTP检查目录是否存在?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-25 20:40