我的脚本应该接受相对路径或绝对路径(只是目录)。这是我第一次用Python做这件事。我将坚持使用以下代码:
def _Dir(pass_dir):
get_path = pass_dir
#gives full normal path
full_path = os.path.abspath(get_path)
#check if it exists
if os.path.isdir(full_path):
print "path exists"
return 1
else:
print "path doesn't exists"
return 0
是否足以执行此检查?或者有更聪明的方法来检查传递的目录(相对或绝对)是否存在?
干杯