내 프로그램 :C#으로 FTP에서 파일을 삭제이 코드를 사용하여 FTP 서버에 파일을 업로드 할 수 있습니다
WebClient Client = new WebClient();
Client.Credentials = new System.Net.NetworkCredential(ftpUsername, ftpPassword);
Client.BaseAddress = ftpServer;
Client.UploadFile(fileToUpload, WebRequestMethods.Ftp.UploadFile, fileName);
을 마우스 오른쪽 단추로 지금은 일부 파일을 삭제해야 내가 바로 그렇게 할 수 없습니다.
Client.UploadFile(fileToUpload, WebRequestMethods.Ftp.UploadFile, fileName);