Linux

如何從命令行通過 Dropbox 在 Linux 中的選擇性同步功能包含文件夾?

  • December 6, 2020

在另一個使用者問了這個問題後: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 文件夾中目前未同步的其他文件。

排除所有文件/文件夾:

  • cd 到您的保管箱文件夾(通常cd ~/Dropbox
  • 然後鍵入~/bin/dropbox.py exclude add *這將從同步中排除您的保管箱文件夾中的所有內容。(小心!這將刪除您同步的所有文件
  • 然後,如果要開始同步文件夾“dir”,請鍵入~/bin/dropbox.py exclude remove dir

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

引用自:https://serverfault.com/questions/711101