This is My Program FTP using Visual Studio 2010How to create new file and new folder BUTTON in FTP Program
This is My Program FTP using Visual Studio 2010
This is My Program FTP using Visual Studio 2010Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Upendra Pratap ShahiPosted Jul 2, 2015, 1:22 AM
Gede YuditaPosted Jul 2, 2015, 1:20 AM
Upendra Pratap ShahiPosted Jun 29, 2015, 3:02 AM
Manoj BhoirPosted Jun 29, 2015, 2:47 AM
{
WebRequest ftpRequest = WebRequest.Create("ftp://" + ftpAddress + "/AUTO_TEST_FOLDER");
ftpRequest.Method = WebRequestMethods.Ftp.MakeDirectory;
ftpRequest.Credentials = new NetworkCredential(ftpUName, ftpPWord);
}