码迷,mamicode.com
首页 > 其他好文 > 详细

File

时间:2016-07-06 19:59:10      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

类概览

1.File引用文件不一定存在,而且File并不如其名,它也可能是文件目录或者其它非一般文件

 

构造器

File(File dir, String name)  //一般我们通过 File(getFileDir(),"name") new 一个File出来

File(String path)

File(String dirPath, String name)

File(URI uri)

  

公共方法

mkdir() //创建目录,父路径必须存在

mkdirs()  //父路径可以不存在,它会创建

createNewFile() delete() exists() getAbsolutePath() getName() getPath() isDirectory() isFile() length() //按byte算 listFiles()

  

 最佳实践

File file = new File(getFilesDir(), "myFile");
Log.i("TAG", file.getAbsolutePath() + " " + file.isFile());  //  false
Log.i("TAG", file.exists() + "");   //false
try {
 
    file.createNewFile()‘ 
}catch(IOExeception e) {
   e.printStackTrace();
}
Log.i("TAG", file.getAbsolutePath() + " " + file.isFile());  //true
Log.i("TAG", file.exists() + "");   //true

  

File

标签:

原文地址:http://www.cnblogs.com/mmyz-sysu-panjn/p/File.html

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