web-dev-qa-db-ja.com

Picasa 3にAmazon S3に持っているすべての写真をバックアップする方法

私は私がAmazon S3にプッシュしたいのは何千もの写真があります。 Picasaはそれらすべての索引を持っていますが、彼らは私のコンピュータとUSBドライブの上に広がっています。

Picasa 3にAmazon S3に持っているすべての写真をバックアップする方法

2
ConsultUtah

いくつかのツールを使用することができます webdrive Amazon S3をコンピュータ上のローカルドライブ文字にマッピングしてから、マッピングされたドライブ文字に写真を保存するようにします。その後、WebDriveのローカルミラーリング機能をオンにすると、ファイルはS3、Plusに保存されます。

私は個人的にPicassaをフォトフォルダーとして使うようにPicassaを入手してください、そして私はローカルに写真を持っています、そしてAmazonで(Dropboxを介して!)

1
Matthew Lock

使用することができます Minio Client AKA MC。 [MC MIRROR]コマンドを使用すると、S3バケットでローカルディレクトリをミラーリングできます。

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.
 _

それが役に立てば幸い。

0
user52692