반응형 하위 폴더 전부 읽기1 [Backend] Node.js 하위 폴더 읽기 및 파일 찾기 Node.js 하위 폴더 읽기 및 파일 찾기 const inspectionFindFile = (destPath) => { try { fs.readdirSync(destPath, { withFileTypes: true }) .forEach((file) => { const path = `${destPath}/${file.name}`; if (file.isDirectory()) { inspectionFindFile(path); } else { // 파일 처리 파일은 따로 배열에 담아 처리하시면됩니다. } }); } catch(err) { return console.error('Read Error', err); } } // 예시 경로입니다. inspectionFindFile(C:/Desktop/image); 검.. 2021. 9. 15. 이전 1 다음 반응형