为了账号安全,请及时绑定邮箱和手机立即绑定

python检测是文件还是目录的方法

python检测是文件还是目录的方法

呼如林 2019-06-07 13:06:27
python检测是文件还是目录的方法
查看完整描述

1 回答

?
九州编程

TA贡献1785条经验 获得超4个赞

1

2

3

4

5

6

7

8

9

10

import os

if not os.path.exists('file_or_folder'):

    print('file_or_folder not exists')

else:

    if os.path.isfile('file_or_folder'):

        print('file_or_folder is a file')

    elif os.path.isdir('file_or_folder'):

        print('file_or_folder is a dir')

    elif os.path.islink('file_or_folder'):

        print('file_or_folder is a link')

 


查看完整回答
反对 回复 2019-06-08
  • 1 回答
  • 0 关注
  • 325 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信