标签:
类概览
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
标签:
原文地址:http://www.cnblogs.com/mmyz-sysu-panjn/p/File.html