當前位置: 首頁>>代碼示例>>Python>>正文


Python Path.is_dir方法代碼示例

本文整理匯總了Python中clldutils.path.Path.is_dir方法的典型用法代碼示例。如果您正苦於以下問題:Python Path.is_dir方法的具體用法?Python Path.is_dir怎麽用?Python Path.is_dir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在clldutils.path.Path的用法示例。


在下文中一共展示了Path.is_dir方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __call__

# 需要導入模塊: from clldutils.path import Path [as 別名]
# 或者: from clldutils.path.Path import is_dir [as 別名]
 def __call__(self, parser, namespace, values, option_string=None):
     path_ = Path(values)
     if not path_.exists():
         raise argparse.ArgumentError(self, "path does not exist")
     if not path_.is_dir():
         raise argparse.ArgumentError(self, "path is no directory")
     setattr(namespace, self.dest, path_)
開發者ID:cevmartinez,項目名稱:clld,代碼行數:9,代碼來源:util.py

示例2: in_dir

# 需要導入模塊: from clldutils.path import Path [as 別名]
# 或者: from clldutils.path.Path import is_dir [as 別名]
 def in_dir(cls, d, empty_tables=False):
     fname = Path(d)
     if not fname.exists():
         fname.mkdir()
     assert fname.is_dir()
     res = cls.from_metadata(fname)
     if empty_tables:
         del res.tables[:]
     return res
開發者ID:glottobank,項目名稱:pycldf,代碼行數:11,代碼來源:dataset.py

示例3: datasets

# 需要導入模塊: from clldutils.path import Path [as 別名]
# 或者: from clldutils.path.Path import is_dir [as 別名]
def datasets(args):
    """
    cldf datasets <DIR> [ATTRS]

    List all CLDF datasets in directory <DIR>
    """
    if len(args.args) < 1:
        raise ParserError('not enough arguments')
    d = Path(args.args[0])
    if not d.exists() or not d.is_dir():
        raise ParserError('%s is not an existing directory' % d)
    for fname in sorted(d.glob('*' + MD_SUFFIX), key=lambda p: p.name):
        md = Metadata(load(fname))
        data = fname.parent.joinpath(
            md.get_table().url or fname.name[:-len(MD_SUFFIX)])
        if data.exists():
            print(data)
            if len(args.args) > 1:
                maxlen = max(len(a) for a in args.args[1:])
                for attr in args.args[1:]:
                    if md.get(attr):
                        print('    %s %s' % ((attr + ':').ljust(maxlen + 1), md[attr]))
開發者ID:LinguList,項目名稱:pycldf,代碼行數:24,代碼來源:cli.py

示例4: from_metadata

# 需要導入模塊: from clldutils.path import Path [as 別名]
# 或者: from clldutils.path.Path import is_dir [as 別名]
    def from_metadata(cls, fname):
        fname = Path(fname)
        if fname.is_dir():
            name = '{0}{1}'.format(cls.__name__, MD_SUFFIX)
            tablegroup = TableGroup.from_file(pkg_path('modules', name))
            # adapt the path of the metadata file such that paths to tables are resolved
            # correctly:
            tablegroup._fname = fname.joinpath(name)
        else:
            tablegroup = TableGroup.from_file(fname)

        comps = Counter()
        for table in tablegroup.tables:
            try:
                comps.update([Dataset.get_tabletype(table)])
            except ValueError:
                pass
        if comps and comps.most_common(1)[0][1] > 1:
            raise ValueError('{0}: duplicate components!'.format(fname))

        for mod in get_modules():
            if mod.match(tablegroup):
                return mod.cls(tablegroup)
        return cls(tablegroup)
開發者ID:glottobank,項目名稱:pycldf,代碼行數:26,代碼來源:dataset.py


注:本文中的clldutils.path.Path.is_dir方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。