python 中怎样判断是不是文件

python 中怎样判断是不是文件,第1张

在os.path模块中有个isfile的方法,御斗该方法可以山拆誉判断是不是文件,返回True说明是文件,返回False则不是文件,下面的英文是摘自python文档

os.path.isfile(path)

Return True if

path is an existing regular file. This follows symbolic links, so both

islink() and isfile() can be true for the same path.

用法也很简单

import os

filename='逗段/tmp/test.txt'

print os.path.isfile(filename)

//判断是文件还是文件夹

public static void fileBox(){

File f = new File("f:"+File.separator+"1.txt")//f:\1.txt

System.out.println(File.separator)

if(f.isDirectory())

System.out.println("路径是目录手则")//如果是文乎正件夹(Midir)

else

System.out.println("路径不是目录")//不是文件岁薯悔夹

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12308065.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存