How to use the memfs.fs.existsSync function in memfs

To help you get started, we’ve selected a few memfs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MarkBind / markbind / __mocks__ / fs-extra-promise.js View on Github external
function rimraf(dirPath) {
  if (fs.existsSync(dirPath)) {
    fs.readdirSync(dirPath).forEach((entry) => {
      const entryPath = path.join(dirPath, entry);
      if (fs.lstatSync(entryPath).isDirectory()) {
        rimraf(entryPath);
      } else {
        fs.unlinkSync(entryPath);
      }
    });
    fs.rmdirSync(dirPath);
  }
}
github MarkBind / markbind / __mocks__ / fs-extra-promise.js View on Github external
dirNames.reduce((accumDir, currentdir) => {
    const jointDir = path.join(accumDir, currentdir);
    if (!fs.existsSync(jointDir)) {
      fs.mkdirSync(jointDir);
    }
    return jointDir;
  }, '');
}
github MarkBind / markbind / __mocks__ / fs-extra-promise.js View on Github external
fs.emptydirSync = (dir) => {
  if (!fs.existsSync(dir)) {
    createDir(dir);
  } else {
    rimraf(dir);
  }
};
github MarkBind / markbind / __mocks__ / fs-extra-promise.js View on Github external
files.forEach((file) => {
      const curSource = path.join(src, file);
      const curDest = path.join(dest, file);
      if (fs.lstatSync(curSource).isDirectory()) {
        if (!fs.existsSync(curDest)) {
          createDir(curDest);
        }
        copyDirSync(curSource, curDest);
      } else {
        copyFileSync(curSource, curDest);
      }
    });
  }