美文网首页
Android 关于文件及文件夹的操作

Android 关于文件及文件夹的操作

作者: 码农来搬砖 | 来源:发表于2019-05-31 10:27 被阅读0次

1、创建文件

 /**
* 创建文件
* @param filePath 文件地址
* @param fileName 文件名
* @return
*/
public static boolean createFile(String filePath, String fileName) {
    String strFilePath = filePath + fileName;
    File file = new File(filePath);
    if (!file.exists()) {
        /**  注意这里是 mkdirs()方法  可以创建多个文件夹 */
        file.mkdirs();
    }
    File subfile = new File(strFilePath);
    if (!subfile.exists()) {
        try {
            boolean b = subfile.createNewFile();
            return b;
        } catch (IOException e) {
            e.printStackTrace();
        }
    } else {
        return true;
    }
    return false;
}

2、遍历文件夹下的文件

/**
* 遍历文件夹下的文件
* @param file 地址
*/
public static List<File> getFile(File file) {
    List<File> list = new ArrayList<>();
    File[] fileArray = file.listFiles();
    if (fileArray == null) {
        return null;
    } else {
        for (File f : fileArray) {
            if (f.isFile()) {
                list.add(0, f);
            } else {
                getFile(f);
            }
        }
    }
    return list;
}

3、删除文件

/**
* 删除文件
* @param filePath 文件地址
* @return
*/
public static boolean deleteFiles(String filePath) {
    List<File> files = getFile(new File(filePath));
    if (files.size() != 0) {
        for (int i = 0; i < files.size(); i++) {
            File file = files.get(i);
            /**  如果是文件则删除  如果都删除可不必判断  */
            if (file.isFile()) {
                file.delete();
            }
        }
    }
    return true;
}

4、向文件中添加内容

/**
* 向文件中添加内容
* @param strcontent 内容
* @param filePath   地址
* @param fileName   文件名
*/
public static void writeToFile(String strcontent, String filePath, String fileName) {
    //生成文件夹之后,再生成文件,不然会出错
    String strFilePath = filePath + fileName;
    // 每次写入时,都换行写
    File subfile = new File(strFilePath);
    RandomAccessFile raf = null;
    try {
        /**   构造函数 第二个是读写方式    */
        raf = new RandomAccessFile(subfile, "rw");
        /**  将记录指针移动到该文件的最后  */
        raf.seek(subfile.length());
        /** 向文件末尾追加内容  */
        raf.write(strcontent.getBytes());
        raf.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

5、修改文件内容(覆盖或者添加)

/**
* 修改文件内容(覆盖或者添加)
* @param path    文件地址
* @param content 覆盖内容
* @param append  指定了写入的方式,是覆盖写还是追加写(true=追加)(false=覆盖)
*/
public static void modifyFile(String path, String content, boolean append) {
    try {
        FileWriter fileWriter = new FileWriter(path, append);
        BufferedWriter writer = new BufferedWriter(fileWriter);
        writer.append(content);
        writer.flush();
        writer.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

6、读取文件内容

/**
* 读取文件内容
* @param filePath 地址
* @param filename 名称
* @return 返回内容
*/
public static String getString(String filePath, String filename) {
    FileInputStream inputStream = null;
    try {
        inputStream = new FileInputStream(new File(filePath + filename));
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }
    InputStreamReader inputStreamReader = null;
    try {
        inputStreamReader = new InputStreamReader(inputStream, "UTF-8");
    } catch (UnsupportedEncodingException e1) {
        e1.printStackTrace();
    }
    BufferedReader reader = new BufferedReader(inputStreamReader);
    StringBuffer sb = new StringBuffer("");
    String line;
    try {
       while ((line = reader.readLine()) != null) {
            sb.append(line);
            sb.append("\n");
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    return sb.toString();
}

7、重命名文件

/**
* 重命名文件
* @param oldPath 原来的文件地址
* @param newPath 新的文件地址
*/
public static void renameFile(String oldPath, String newPath) {
    File oleFile = new File(oldPath);
    File newFile = new File(newPath);
    //执行重命名
    oleFile.renameTo(newFile);
}

8、复制文件

/**
* 复制文件
* @param fromFile 要复制的文件目录
* @param toFile   要粘贴的文件目录
* @return 是否复制成功
*/
public static boolean copy(String fromFile, String toFile) {
    //要复制的文件目录
    File[] currentFiles;
    File root = new File(fromFile);
    //如同判断SD卡是否存在或者文件是否存在
    //如果不存在则 return出去
    if (!root.exists()) {
        return false;
    }
    //如果存在则获取当前目录下的全部文件 填充数组
    currentFiles = root.listFiles();
    //目标目录
    File targetDir = new File(toFile);
    //创建目录
    if (!targetDir.exists()) {
        targetDir.mkdirs();
    }
    //遍历要复制该目录下的全部文件
    for (int i = 0; i < currentFiles.length; i++) {
        if (currentFiles[i].isDirectory()) {//如果当前项为子目录 进行递归
            copy(currentFiles[i].getPath() + "/", toFile + currentFiles[i].getName() + "/");
        } else {//如果当前项为文件则进行文件拷贝
            CopySdcardFile(currentFiles[i].getPath(), toFile + currentFiles[i].getName());
        }
    }
    return true;
}
//文件拷贝
//要复制的目录下的所有非子目录(文件夹)文件拷贝
public static boolean copySdcardFile(String fromFile, String toFile) {
    try {
        InputStream fosfrom = new FileInputStream(fromFile);
        OutputStream fosto = new FileOutputStream(toFile);
        byte bt[] = new byte[1024];
        int c;
        while ((c = fosfrom.read(bt)) > 0) {
            fosto.write(bt, 0, c);
        }
        fosfrom.close();
        fosto.close();
        return true;
    } catch (Exception ex) {
        return false;
    }
}

相关文章

网友评论

      本文标题:Android 关于文件及文件夹的操作

      本文链接:https://www.haomeiwen.com/subject/wnaitctx.html