python 判断是文件还是目录
展开全部
look~~
>>> os.path.exists("te")
True
>>> os.path.exists("nothing")
False
>>> os.path.isfile("nothing")
False
>>> os.path.isdir("nothing")
False
>>>
>>> os.path.isdir("te")
False
>>> os.path.isfile("te")
True
>>>
建议你先判断是否存在,如果确实存在,你再进行判断是文件还是文件夹
-------------------------
Linux,文件夹名和同级目录的文件名是不可以同时存在的。
zhangzhipeng@Earth:~$ mkdir te
mkdir: cannot create directory `te': File exists
zhangzhipeng@Earth:~$ rm te
zhangzhipeng@Earth:~$ mkdir te
zhangzhipeng@Earth:~$ > te
-bash: te: Is a directory
--------------------------
windows中:
可以证明,不管windows还是linux,同级目录下,是不允许出现同名文件(夹)的
但是这不能代表不是文件就是文件夹啊,首先得确认这个文件(夹)是存在的。
其实,文件夹也是一个文件。
展开全部
os.listdir("路径")列出所有文件和目录
os.path.isdir(“文件名”)判断是目录吗,是返回True,不是返回False
os.path.isfile同上判断文件
os.path.isdir(“文件名”)判断是目录吗,是返回True,不是返回False
os.path.isfile同上判断文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
os模块下
os.path.isdir(path)
这个函数判断是否是目录
试试卡
os.path.isdir(path)
这个函数判断是否是目录
试试卡
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
>>> import os.path
>>> help(os.path.isfile)
Help on function isfile in module genericpath:
isfile(path)
Test whether a path is a regular file
>>> help(os.path.isdir)
Help on function isdir in module genericpath:
isdir(s)
Return true if the pathname refers to an existing directory.
>>> os.path.isfile('/etc/hostname')
True
>>> os.path.isdir('/etc/hostname')
False
>>>
两个函数都在os.path模块里面。参见上文。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询