-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathutils.js
More file actions
84 lines (72 loc) · 1.62 KB
/
utils.js
File metadata and controls
84 lines (72 loc) · 1.62 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const crypto = require('crypto');
const fs = require('fs');
const path = require('path');
const mkdirplib = require('mkdirp');
/**
* Returns the hash of a string.
* @param {string} str
* @param {string} algorithm
* @param {string} encoding
* @return {string}
*/
function checksum(str, algorithm, encoding) {
return crypto
.createHash(algorithm || 'md5')
.update(str, 'utf8')
.digest(encoding || 'hex');
}
/**
* Recursively lists files in a directory.
* @param {string} dirpath
* @return {Array<string>}
*/
function listFiles(dirpath) {
let files = [];
fs.readdirSync(dirpath).forEach((basename) => {
const relpath = path.join(dirpath, basename);
const stat = fs.lstatSync(relpath);
if (stat.isDirectory()) {
files = files.concat(listFiles(relpath));
} else {
files.push(relpath);
}
});
return files;
}
/**
* Recursively creates a directory and its parent directories.
* @param {string} dirpath
*/
function mkdirp(dirpath) {
mkdirplib.sync(dirpath);
}
/**
* Recursively removes a directory.
* @param {string} dirpath
*/
function rmdir(dirpath) {
fs.readdirSync(dirpath).forEach((basename) => {
const relpath = path.join(dirpath, basename);
const stat = fs.lstatSync(relpath);
if (stat.isDirectory()) {
rmdir(relpath);
} else {
fs.unlinkSync(relpath);
}
});
fs.rmdirSync(dirpath);
}
/**
* Touches a file.
* @param {string} filepath
*/
function touch(filepath) {
fs.closeSync(fs.openSync(filepath, 'w'));
}
module.exports = {
checksum: checksum,
listFiles: listFiles,
mkdirp: mkdirp,
rmdir: rmdir,
touch: touch,
};