I have a website and I have admin username and password for FTP access. Given that, is there a way programmatically in C# to create a remote directory on that website?
I've figured out how to upload and download files from existing directories, so now I'm interested in the ability to remotely create directories, add/remove files from a given directory, and delete directories on the website, all from my C# app.

Jaimin ShethiyaPosted Sep 20, 2020, 11:42 PM
can you please check with SSH.Net nuget package for file upload in FTP that time if directory is not created then they will provide a create and delete file if exists. below is the link for Github
https://github.com/sshnet/SSH.NET
Thanks.