zoukankan      html  css  js  c++  java
  • 初入 nodejs -遍历文件夹

    //操作文件
    /*
      1、fs.stat 获取文件状态
      2、fs.readdir 读取文件夹数据
      3、fs.access 判断文件夹是否存在
      4、path.join 拼路径
    */
    //操作文件
    const fs = require('fs');
    //操作路径
    const path = require('path');
    //1.接受命令行命令
    //3.判断路径是否存在
    //2.修正路径
    let inputPath = process.argv[2];//[2]是输入的路径名
    if(!inputPath) {//判断有没有输入内容
        throw '请输入文件名!';
    }
    //转换路径格式为绝对路径
    inputPath = path.resolve(inputPath);
    //输入的路径存在就执行递归
    try{
        //扩展:'.F_OK'==='检查目录中是否存在文件'
        //'.R_OK'==='检查文件是否可读',详细见nodejs文档
        //也可以这样写 :判断是否存在,以及是否可读
        //fs.accessSync(inputPath,fs.constants.F_OK|fs.constants.R_OK);
        //这里的 fs.constants.F_OK 是默认值,不用写   
        fs.accessSync(inputPath);
        testReadFiles(inputPath);
    }catch(err){
        console.log(err);
    }
    
    function testReadFiles(filePath){
        let state = fs.statSync(filePath);
        if(state.isFile()){
            //是文件
            console.log(filePath)
        }else if (state.isDirectory()){
            //是文件夹
            //先读取
            let files = fs.readdirSync(filePath);
            files.forEach(file=>{
                console.log(path.join(filePath,file)+',file')
                testReadFiles(path.join(filePath,file));
            });
        }
    }
  • 相关阅读:
    Wannafly Winter Camp 2020 Day 7D 方阵的行列式
    [CF1311F] Moving Points
    [CF1311E] Construct the Binary Tree
    [CF1311D] Three Integers
    [CF1311C] Perform the Combo
    [CF1311B] WeirdSort
    [CF1311A] Add Odd or Subtract Even
    Wannafly Winter Camp 2020 Day 7A 序列
    SP7258 SUBLEX
    Wannafly Winter Camp 2020 Day 6J K重排列
  • 原文地址:https://www.cnblogs.com/xinchenhui/p/10751498.html
Copyright © 2011-2022 走看看