forked from conaticus/boolean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.ts
37 lines (33 loc) · 1.02 KB
/
files.ts
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
import path from "path";
import fs from "fs";
const walk = (
pathLike: fs.PathLike,
options?:
| {
encoding: BufferEncoding | null;
}
| BufferEncoding
| null
| undefined
): string[] => {
let results: string[] = [];
const fileList = fs.readdirSync(pathLike, options);
for (let i = 0; i < fileList.length; i += 1) {
const file = fileList[i];
const stat = fs.statSync(path.join(pathLike.toString(), file));
results = [
...results,
...(stat && stat.isDirectory()
? walk(path.join(pathLike.toString(), file))
: [path.join(pathLike.toString(), file)]),
];
}
return results;
};
const commandFiles = walk(path.join(__dirname, "commands")).filter((file) =>
[".ts", ".js"].some((ext) => file.endsWith(ext))
);
const eventFiles = walk(path.join(__dirname, "events")).filter((file) =>
[".ts", ".js"].some((ext) => file.endsWith(ext))
);
export { commandFiles, eventFiles };