web-dev-qa-db-ja.com

LinuxのDropboxの選択同期機能を使用して、コマンドラインからフォルダーを*含める*にはどうすればよいですか?

別のユーザーがこの質問をした後: Linuxサーバー上のDropbox-フォルダーを含める/除外する方法?

他の質問と回答に記載されているいくつかの手順を実行しても、アイコンが機能しません。

編集:この投稿を読んでいるときに誰かが不思議に思っていた場合、私は次のリンクをたどることによって私のアイコンを最終的に表示することができました:

この質問は、コマンドラインからこれを実行したいすべての人に有効です。

除外するための回答はありましたが、含めるための回答はありませんでした。これを達成する方法はありますか?

以前のコマンドはdropboxコマンドのヘルプテキストに記載されていますが、含めることができるものはありません。

誰かがこれを達成する方法を知っていますか?

ここに私が見る現在のヘルプテキストがあります:

Dropbox command-line interface  

commands:  

Note: use dropbox help <command> to view usage for a specific command.  

 status       get current status of the dropboxd  
 help         provide help  
 puburl       get public url of a file in your dropbox  
 stop         stop dropboxd  
 running      return whether dropbox is running  
 start        start dropboxd  
 filestatus   get current sync status of one or more files  
 ls           list directory contents with current sync status  
 autostart    automatically start dropbox at login  
 exclude      ignores/excludes a directory from syncing  
 lansync      enables or disables LAN sync  

また、Dropboxの公式ヘルプドキュメントもいくつか見つかりました。このドキュメントには、現在同期されていないDropboxフォルダーから他のファイルを含めずに、ファイルの除外について不思議なことに言及しているだけです。

16
Pysis

すべてのファイル/フォルダーを除外するには:

  • ドロップボックスフォルダーにcdします(通常はcd ~/Dropbox
  • 次に~/bin/dropbox.py exclude add *と入力します。これにより、Dropboxフォルダ内のすべてが同期から除外されます。 (注意してください!これにより、同期したすべてのファイルが削除されます)
  • 次に、「dir」フォルダの同期を開始する場合は、~/bin/dropbox.py exclude remove dirと入力します。

http://www.dropboxwiki.com/tips-and-tricks/using-the-official-dropbox-command-line-interface-cli#comment-1778553228 から取得

23
undersound