gpt4 book ai didi

python - 带有 argparse 的目录路径类型

转载 作者:IT老高 更新时间:2023-10-28 20:25:00 25 4
gpt4 key购买 nike

我的 python 脚本需要从命令行传递的目录中读取文件。我已经定义了一个 readable_dir 类型,如下所示与 argparse 一起使用,以验证在命令行上传递的目录是否存在且可读。此外,还为目录参数指定了默认值(以下示例中的/tmp/non_existent_dir)。这里的问题是,即使在命令行上显式传入目录参数的情况下,argparse 也会在默认值上调用 readable_dir()。这会导致脚本崩溃,因为默认路径/tmp/non_existent_dir 在命令行上显式传入目录的上下文中不存在。我可以通过不指定默认值并强制此参数来解决此问题,或者将验证推迟到脚本的稍后部分,但这是一个任何人都知道的更优雅的解决方案?

#!/usr/bin/python
import argparse
import os

def readable_dir(prospective_dir):
if not os.path.isdir(prospective_dir):
raise Exception("readable_dir:{0} is not a valid path".format(prospective_dir))
if os.access(prospective_dir, os.R_OK):
return prospective_dir
else:
raise Exception("readable_dir:{0} is not a readable dir".format(prospective_dir))

parser = argparse.ArgumentParser(description='test', fromfile_prefix_chars="@")
parser.add_argument('-l', '--launch_directory', type=readable_dir, default='/tmp/non_existent_dir')
args = parser.parse_args()

最佳答案

我提交了 a patch for "path arguments" to the Python standard library mailing list几个月前。

使用这个 PathType 类,您可以简单地指定以下参数类型以匹配一个现有目录——其他任何东西都会给出错误消息:

type = PathType(exists=True, type='dir')

这是代码,可以轻松修改为也需要特定的文件/目录权限:

from argparse import ArgumentTypeError as err
import os

class PathType(object):
def __init__(self, exists=True, type='file', dash_ok=True):
'''exists:
True: a path that does exist
False: a path that does not exist, in a valid parent directory
None: don't care
type: file, dir, symlink, None, or a function returning True for valid paths
None: don't care
dash_ok: whether to allow "-" as stdin/stdout'''

assert exists in (True, False, None)
assert type in ('file','dir','symlink',None) or hasattr(type,'__call__')

self._exists = exists
self._type = type
self._dash_ok = dash_ok

def __call__(self, string):
if string=='-':
# the special argument "-" means sys.std{in,out}
if self._type == 'dir':
raise err('standard input/output (-) not allowed as directory path')
elif self._type == 'symlink':
raise err('standard input/output (-) not allowed as symlink path')
elif not self._dash_ok:
raise err('standard input/output (-) not allowed')
else:
e = os.path.exists(string)
if self._exists==True:
if not e:
raise err("path does not exist: '%s'" % string)

if self._type is None:
pass
elif self._type=='file':
if not os.path.isfile(string):
raise err("path is not a file: '%s'" % string)
elif self._type=='symlink':
if not os.path.symlink(string):
raise err("path is not a symlink: '%s'" % string)
elif self._type=='dir':
if not os.path.isdir(string):
raise err("path is not a directory: '%s'" % string)
elif not self._type(string):
raise err("path not valid: '%s'" % string)
else:
if self._exists==False and e:
raise err("path exists: '%s'" % string)

p = os.path.dirname(os.path.normpath(string)) or '.'
if not os.path.isdir(p):
raise err("parent path is not a directory: '%s'" % p)
elif not os.path.exists(p):
raise err("parent directory does not exist: '%s'" % p)

return string

关于python - 带有 argparse 的目录路径类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11415570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com