-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_source_codes.js
48 lines (39 loc) · 1.43 KB
/
create_source_codes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const fs = require('fs');
const path = require('path');
// 결과를 저장할 파일 경로
const outputFilePath = path.join(__dirname, '20241126');
// 파일을 탐색하는 함수
function scanDirectory(dir, excludeDirs) {
const files = fs.readdirSync(dir);
files.forEach(file => {
const fullPath = path.join(dir, file);
const stat = fs.lstatSync(fullPath);
// 제외할 디렉토리 검사
if (stat.isDirectory() && !excludeDirs.includes(file)) {
scanDirectory(fullPath, excludeDirs);
} else if (stat.isFile()) {
// 제외할 파일 검사
if (
file !== 'package-lock.json' &&
!file.endsWith('.backup') &&
!file.endsWith('.temp') &&
file !== 'patch.js' &&
file !== 'create_source_codes.js'
) {
appendFileContent(fullPath);
}
}
});
}
// 파일 경로와 내용을 'source_codes' 파일에 추가
function appendFileContent(filePath) {
const fileContent = fs.readFileSync(filePath, 'utf-8');
const formattedContent = `\n<${filePath}>\n\n${fileContent}\n\n`;
fs.appendFileSync(outputFilePath, formattedContent);
}
// 기존 'source_codes' 파일이 있다면 삭제
if (fs.existsSync(outputFilePath)) {
fs.unlinkSync(outputFilePath);
}
// 현재 디렉토리에서 시작, node_modules, logs, .next 디렉토리 제외
scanDirectory(__dirname, ['node_modules', 'logs', '.next', 'uploads', 'chat-app', 'images', 'build', 'public', 'e2e']);