os.path.basename(path) and os.path.exists(path)

os.path.basename(path)
返回path最后的文件名。如何path以/或\结尾,那么就会返回空值。即os.path.split(path)的第二个元素。

print os.path.basename(file)#获取当前文件名称:justtest.py print os.path.basename(r'd:\workspace\R')#获取指定目录的相对路径,即当前目录名:R

os.path.exists(path)
如果path存在,返回True;如果path不存在,返回False。

你可能感兴趣的:(os.path.basename(path) and os.path.exists(path))