本文整理汇总了Python中catalog.Catalog.entriesInDirectory方法的典型用法代码示例。如果您正苦于以下问题:Python Catalog.entriesInDirectory方法的具体用法?Python Catalog.entriesInDirectory怎么用?Python Catalog.entriesInDirectory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类catalog.Catalog
的用法示例。
在下文中一共展示了Catalog.entriesInDirectory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: in
# 需要导入模块: from catalog import Catalog [as 别名]
# 或者: from catalog.Catalog import entriesInDirectory [as 别名]
name=os.path.join(os.path.basename(parent), name)
parent=os.path.dirname(parent)
if name.startswith("trunk") or file[0] in ( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' ):
name=os.path.join(os.path.basename(parent), name)
print "add project: "+name+" ("+file+")"
catalog.insertEntry(path=file, display_name=name, command=project)
for dir in args:
for root, dirs, files in os.walk(dir):
if isforbidden(root):
continue
if "project.xml" in files:
if not catalog.entryForPath(root):
addProject(root)
existing=catalog.entriesInDirectory(dir)
existing_files=map(lambda x: x.path, existing)
for file in files:
if isinteresting(root, file):
file=os.path.join(root, file)
if not file in existing_files:
add(file)
existing_files.append(file)
for old in existing:
if not old.exists():
existing.delete()
if wait:
catalog.commit()
time.sleep(WAIT_UNIT)
catalog.commit()