美文网首页
NodeJs同步遍历目录并拷贝视频文件至指定路径

NodeJs同步遍历目录并拷贝视频文件至指定路径

作者: 一个搬砖小能手 | 来源:发表于2021-06-07 11:21 被阅读0次

    需求说明:

    • 这个需求其实跟我的文章《JAVA从文件夹中抽取mp4到外部并重命名》很类似。只不过最才接触Vue,想用nodejs的模块练练手。区别在于《JAVA从文件夹中抽取mp4到外部并重命名》只能遍历单层子目录,而本文要无视路径深度,直到找到视频文件。
    • 为了说明这个需求,我先以一个vue3的视频教程目录为例。


      路径示意图.png

    其中,02 Vue3教程XXX开头就是我们包含视频根目录,其下有多个编号的子目录(第一层),每个子目录中又有若干个“孙子”目录(第二层)。我们现在需要进入到所有第二层子目录中,将视频文件(.avi)复制到指定文件夹中去。也就是下面这样:

    结果示意图.png

    这里采用nodejs自带fs、path模块提供的同步方法。思路如下:
    NodeJs同步遍历目录并拷贝视频文件至指定路径下.png
    'use strict'
    const fs = require('fs');
    const path = require('path');
    const Event = require('events');
    
    
    class VideoMover {
        rootPath = ""
    
        static FILE_SEPARATOR = "\\";
        static sourcePath = "D:\\下载用文件夹\\前端全栈之旅\\02 Vue3教程_Vue3.x教程_Vue3.x+Ts+Vuex+Antd Ui框架入门进阶视频教程(34讲)"
        static targetPath = "D:\\下载用文件夹\\前端全栈之旅\\02 (视频纯享版)Vue3教程_Vue3.x教程_Vue3.x+Ts+Vuex+Antd Ui框架入门进阶视频教程(34讲)";
    
        constructor(props) {
            if (typeof (props) === "string") {
                this.rootPath = props
            } else {
                this.rootPath = props.rootPath;
            }
        }
    
        startMoveVideos = () => {
            this.walkIntoDirToFindVideo(VideoMover.sourcePath,-1,0)
        }
    
        /**
         * 使用同步方法+递归查找视频,并复制到指定目录中。
         * @param currentPath
         * @param videoIndexNum
         * @param deep 递归深度,0代表顶层(存放资源的根目录),根目录中存放多个编好顺序的文件夹。
         */
        walkIntoDirToFindVideo(currentPath, videoIndexNum, deep) {
            let statResult = fs.statSync(currentPath);
            //一般来说,视频的序号在第一次遍历(也就是根目录遍历)时应该能取到,取到之后不再重复获取
            if (videoIndexNum === -1 && deep === 1) {
                videoIndexNum = this.getIndexNum(path.basename(currentPath));
            }
            //如果当前依然是路径,就将当前路径下的文件全部读出来,进行递归
            if (statResult.isDirectory()) {
                let filesInCurrentDir = fs.readdirSync(currentPath);
                // console.log(filesInCurrentDir);
                for (let i = 0 ; i < filesInCurrentDir.length; i++) {
                    const newPath = currentPath + VideoMover.FILE_SEPARATOR+filesInCurrentDir[i];
                    this.walkIntoDirToFindVideo(newPath,videoIndexNum, deep+1);
                }
            } else {
                if (!fs.existsSync(VideoMover.targetPath)) {
                    fs.mkdirSync(VideoMover.targetPath);
                }
                //找到avi后缀名的文件
                if (currentPath.endsWith(".avi")) {
                    //获取当前文件的文件名
                    const fileName = path.basename(currentPath);
                    //拼接出最终要复制的文件路径
                    const targetFileAbsolutePath = VideoMover.targetPath + VideoMover.FILE_SEPARATOR + videoIndexNum + " " + fileName;
                    console.log(targetFileAbsolutePath);
                    fs.copyFileSync(currentPath, targetFileAbsolutePath);
                }
    
            }
        }
        getIndexNum(fileDir) {
            let r = /\d+/g;
            let dirName = path.basename(fileDir);
            let nums = dirName.match(r);
            return nums[0];
        }
    }
    
    
    let videoMover = new VideoMover(VideoMover.sourcePath);
    videoMover.startMoveVideos()
    
    

    打完收功。

    相关文章

      网友评论

          本文标题:NodeJs同步遍历目录并拷贝视频文件至指定路径

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