码迷,mamicode.com
首页 > 移动开发 > 详细

Android 笔记 ------当你获得文件路劲时获取此文件的信息

时间:2018-02-03 16:10:58      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:director   date   last   获取   gpo   roi   class   cto   写入   

* "文件名称:" + f.getName()
* "文件是否存在:" + f.exists()
* "文件的相对路径:" + f.getPath()
* "文件的绝对路径:" + f.getAbsolutePath()
* "文件可以读取:" + f.canRead()
* "文件可以写入:" + f.canWrite()
* "文件上级路径:" + f.getParent()
* "文件大小:" + f.length()
* "文件最后修改时间:" + new Date(f.lastModified())
* "是否是文件类型:" + f.isFile());
* "是否是文件夹类型:" + f.isDirectory()
* "文件大小:" + fis.available()

Android 笔记 ------当你获得文件路劲时获取此文件的信息

标签:director   date   last   获取   gpo   roi   class   cto   写入   

原文地址:https://www.cnblogs.com/sfysuper/p/8408975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!