我正在尝试将 Ubuntu One File 同步 python 脚本修改为不包括 .iso 之类的内容。
我已经找到了这个文件:/usr/share/pyshared/ubuntuone/u1sync/constants.py
里面是这段代码:
import re
# the name of the directory u1sync uses to keep metadata about a mirror
METADATA_DIR_NAME = u".ubuntuone-sync"
# filenames to ignore
SPECIAL_FILE_RE = re.compile(".*\\.("
"(u1)?partial|part|"
"(u1)?conflict(\\.[0-9]+)?)$")
如何编辑这最后一部分(正则表达式?)并使其忽略 .iso 文件???我很确定这是放置它的地方!
很确定这是标准的python动作:)
任何帮助,将不胜感激。
非常感谢。
安迪