Kaynağa Gözat

Ajout isDir

Loquicom 5 yıl önce
ebeveyn
işleme
47b4fb9e14
1 değiştirilmiş dosya ile 7 ekleme ve 0 silme
  1. 7 0
      src/file.js

+ 7 - 0
src/file.js

@@ -76,4 +76,11 @@ module.exports.getExtension = function (filename) {
     return split[split.length - 1];
 };
 
+module.exports.isDir = function (path) {
+    if (!module.exports.exist(path)) {
+        return false;
+    }
+    return fs.statSync(path).isDirectory();
+};
+
 module.exports.fs = fs;