fix isFile bug
was previously using `fs.lstatSync().isFile()`. The `isFile()` method doesnt seem to exist so i went with `fs.existsSync()` instead.
This commit is contained in:
parent
2536c40517
commit
0f845a3218
70
lib/node.js
70
lib/node.js
@ -3,39 +3,39 @@ import fs from "fs"
|
|||||||
|
|
||||||
|
|
||||||
export const Node = {
|
export const Node = {
|
||||||
isFile:function(filename){
|
isFile: function(filename) {
|
||||||
try {
|
try {
|
||||||
return fs.lstatSync(filename).isFile()
|
return fs.existsSync(filename)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err)
|
console.error(err)
|
||||||
return false
|
return false
|
||||||
}
|
|
||||||
|
|
||||||
},
|
|
||||||
getFullPath:function(folderPath){
|
|
||||||
return fs.readdirSync(folderPath).map(fn => path.join(folderPath, fn))
|
|
||||||
},
|
|
||||||
getFiles: function(dir) {
|
|
||||||
var results = [];
|
|
||||||
var list = fs.readdirSync(dir);
|
|
||||||
list.forEach(function(file) {
|
|
||||||
file = dir + '/' + file;
|
|
||||||
var stat = fs.statSync(file);
|
|
||||||
if (stat && stat.isDirectory()) {
|
|
||||||
/* Recurse into a subdirectory */
|
|
||||||
results = results.concat(Node.getFiles(file));
|
|
||||||
} else {
|
|
||||||
/* Is a file */
|
|
||||||
results.push(file);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return results.filter(f => f.endsWith(".md"))
|
|
||||||
},
|
|
||||||
readFileSync:function(fullPath){
|
|
||||||
return fs.readFileSync(fullPath, "utf8")
|
|
||||||
},
|
|
||||||
|
|
||||||
getMarkdownFolder: function () {
|
|
||||||
return path.join(process.cwd(), 'posts')
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
},
|
||||||
|
getFullPath: function(folderPath) {
|
||||||
|
return fs.readdirSync(folderPath).map(fn => path.join(folderPath, fn))
|
||||||
|
},
|
||||||
|
getFiles: function(dir) {
|
||||||
|
var results = [];
|
||||||
|
var list = fs.readdirSync(dir);
|
||||||
|
list.forEach(function(file) {
|
||||||
|
file = dir + '/' + file;
|
||||||
|
var stat = fs.statSync(file);
|
||||||
|
if (stat && stat.isDirectory()) {
|
||||||
|
/* Recurse into a subdirectory */
|
||||||
|
results = results.concat(Node.getFiles(file));
|
||||||
|
} else {
|
||||||
|
/* Is a file */
|
||||||
|
results.push(file);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return results.filter(f => f.endsWith(".md"))
|
||||||
|
},
|
||||||
|
readFileSync: function(fullPath) {
|
||||||
|
return fs.readFileSync(fullPath, "utf8")
|
||||||
|
},
|
||||||
|
|
||||||
|
getMarkdownFolder: function() {
|
||||||
|
return path.join(process.cwd(), 'posts')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user