File流的使用
构造:
1.File file = new File(String pathafme);
2.File file = new File(String parent, String child);
3.File file = new File(File path);
创建功能:
1.boolean createNewFile(); //创建文件
2.boolean mkdir(); //创建单一文件夹
3.boolean mkdirs(); //创建多个文件夹
删除功能:
boolean delete(); //删除空文件夹或文件
判断功能:
1.boolean exists(); //判断是否有文件
2.boolean isAbsolue(); //判断绝对路径
3.boolean isDirectong(); //判断是否是文件夹
4.boolean isFile(); //判断是否是文件
5.boolean isHiden(); //判断是否是藏隐文件
修改功能:
boolean renameTo(Filedest);
获取功能:
1.File getAbsolateFile(); //返回绝对路径
2.String getParentFile();
3.String getparentFile();
4.File getParentFile();
5.String getName();
6.String getPath();
7.long lastModified(); //修改时间
8.long length(); //获取当前路径文件的字节
重要的获取功能:
1.String[] list(); //将文件夹以空字符串的形式方法
2.File[] listFeles();
3.Static File[] listRoots |
|