在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 osfilename='逗段/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("路径不是目录")//不是文件岁薯悔夹
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)