当前位置: 首页>>代码示例>>Python>>正文


Python Util.make_file_list方法代码示例

本文整理汇总了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 = []
开发者ID:nf-mlo,项目名称:stetl,代码行数:12,代码来源:fileinput.py

示例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))
开发者ID:gijs,项目名称:stetl,代码行数:17,代码来源:fileinput.py


注:本文中的stetl.util.Util.make_file_list方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。