Large-Files

你如何防止同步大文件?

  • September 22, 2020

我正在使用統一文件同步軟體,並且我知道忽略同步具有特定正則表達式或名稱的文件的配置。但是有沒有辦法阻止大文件的同步,例如大於 10 MB 的文件?

ignore = Name *.swp
ignore = Path */env
ignore = Path */build

我家的網速很慢,不想同步大文件。

從您連結的頁面

變更日誌

添加了一個 maxsizethreshold 選項,可防止傳輸大於指定大小(以 Kb 為單位)的文件。

命令行中的用法:

-maxsizethreshold n prevent transfer of files bigger than this (if >=0, in Kb)

引用自:https://unix.stackexchange.com/questions/607370