이 글에서는 BOM 파일 헤더 일괄 제거를 구현하기 위한 Node.js를 주로 소개합니다. 이 글에서는 구현 코드를 직접 제공하여 필요한 경우 참고할 수 있습니다.
전 동료가 툴을 작성했는데 버그가 있었습니다. 파일을 교체한 후 원본 파일 형식이 utf8 BOM으로 변경되어 Mac에서는 읽혀지지 않을 수 있습니다. 이를 처리할 도구를 작성해야 합니다.
사실 아이디어는 비교적 간단합니다. 먼저 디렉터리를 탐색한 다음 디렉터리를 읽고 파일의 처음 3바이트를 제거한 다음 UTF-8 형식의 파일로 저장하면 됩니다. code:)
var fs = require('fs'); var path = "目标路径.."; function readDirectory(dirPath) { if (fs.existsSync(dirPath)) { var files = fs.readdirSync(dirPath); files.forEach(function(file) { var filePath = dirPath + "/" + file; var stats = fs.statSync(filePath); if (stats.isDirectory()) { console.log('\n读取目录: ', filePath, "\n"); readDirectory(filePath); } else if (stats.isFile()) { var buff = fs.readFileSync(filePath); if (buff[0].toString(16).toLowerCase() == "ef" && buff[1].toString(16).toLowerCase() == "bb" && buff[2].toString(16).toLowerCase() == "bf") { //EF BB BF 239 187 191 console.log('\发现BOM文件:', filePath, "\n"); buff = buff.slice(3); fs.writeFile(filePath, buff.toString(), "utf8"); } } }); } else { console.log('Not Found Path : ', dirPath); } } readDirectory(path);
위 내용은 이 장의 전체 내용입니다. 더 많은 관련 튜토리얼을 보려면 Node.js 비디오 튜토리얼을 방문하세요!