문제

I'm using FTP servers on the Load Balanced FTP cluster. I need to put related files to a single server.

Can I upload one file to several different directories by one FtpWebRequest?

도움이 되었습니까?

해결책

You can't. First of all since the ftp protocol is intended to works on request basis, and second, since each FtpWebRequest has a specific path, you need to create a request for each directory in which you want to upload.

다른 팁

I've resolved this issue using KeepAlive property of FtpWebRequest. While KeepAlive is true all files from different requests will be uploaded to a single server.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top