哪些桌面应用程序可以将 Amazon S3 与 FTP 文件夹同步?

哪些桌面应用程序可以将 Amazon S3 与 FTP 文件夹同步?

我正在尝试将大文件从我的网站迁移到 S3。

答案1

哪个操作系统?

我认为超级柔韧(多平台,免费试用)可以,但我不太确定。如果不行,我不明白为什么你不能使用本地存储作为中间点。无论如何,你都必须在 FTP 服务器计算机上运行客户端软件,不是吗?

答案2

恐慌发送app 可以在 Mac 上实现。

您需要传输文件。可能是传输到 FTP 或 SFTP 服务器,或通过 Amazon S3 传输到云端,或使用 WebDAV。您维护网站、进行备份或上传照片。

您需要 Transmit,一个 Mac OS X FTP 客户端。

答案3

您还可以使用CloudBerry 探索器允许将数据从 SFTP/FTP 移动到 Amazon S3

答案4

您也可以尝试minio客户端又名“mc”。它用 Golang 编写,适用于 Windows、Mac 和 Linux。

mc 执行以下命令

  ls        List files and folders.
  mb        Make a bucket or folder.
  cat       Display contents of a file.
  pipe      Write contents of stdin to one or more targets. When no target is specified, it writes to stdout.
  share     Generate URL for sharing.
  cp        Copy one or more objects to a target.
  mirror    Mirror folders recursively from a single source to many destinations.
  diff      Compute differences between two folders.
  rm        Remove file or bucket [WARNING: Use with care].
  access    Manage bucket access permissions.
  session   Manage saved sessions of cp and mirror operations.
  config    Manage configuration file.
  update    Check for a new software update.
  version   Print version.

mc mirror 命令可以将您本地的目录同步到 S3 bucket。

$ mc mirror localDir s3/RemoteBucket

希望能帮助到你。

相关内容