How to improve the Performance of FtpWebRequest?

后端 未结 18 1132
忘掉有多难
忘掉有多难 2020-11-28 04:46

I have an application written in .NET 3.5 that uses FTP to upload/download files from a server. The app works fine but there are performance issues:

  1. It take

18条回答
  •  借酒劲吻你
    2020-11-28 05:29

    I'd recommend switching to rsync.
    Pros :
    Optimised for reducing transfer time.
    Supports SSH for secure transfer
    Uses TCP so makes your IT dept/firewall guys happier

    Cons:
    No native .NET support
    Geared towards linux server installations - though there are decent windows ports like DeltaCopy

    Overall though it's a much better choice than FTP

提交回复
热议问题