python中如何判断目录内是文件还是文件夹

2024年11月15日 06:05
有1个网友回答
网友(1):

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