本文整理汇总了Python中stetl.util.Util.make_file_list方法的典型用法代码示例。如果您正苦于以下问题:Python Util.make_file_list方法的具体用法?Python Util.make_file_list怎么用?Python Util.make_file_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stetl.util.Util
的用法示例。
在下文中一共展示了Util.make_file_list方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import make_file_list [as 别名]
def __init__(self, configdict, section, produces):
Input.__init__(self, configdict, section, produces)
# Create the list of files to be used as input
self.file_list = Util.make_file_list(self.file_path, None, self.filename_pattern, self.depth_search)
log.info("file_list=%s" % str(self.file_list))
if not len(self.file_list):
raise Exception('File list is empty!!')
self.file_list_done = []
示例2: __init__
# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import make_file_list [as 别名]
def __init__(self, configdict, section, produces):
Input.__init__(self, configdict, section, produces)
# path to file or files: can be a dir or files or even multiple, comma separated
self.file_path = self.cfg.get('file_path')
# The filename pattern according to Python glob.glob
self.filename_pattern = self.cfg.get('filename_pattern', '*.[gxGX][mM][lL]')
# Recurse into directories ?
self.depth_search = self.cfg.get_bool('depth_search', False)
# Create the list of files to be used as input
self.file_list = Util.make_file_list(self.file_path, None, self.filename_pattern, self.depth_search)
log.info("file_list=%s" % str(self.file_list))