Answers for "check if a path exists"

18

node if path exists

const fs = require("fs"); // Or `import fs from "fs";` with ESM
if (fs.existsSync(path)) {
    // Do something
}
Posted by: Guest on May-22-2020

Code answers related to "check if a path exists"

Code answers related to "Javascript"

Browse Popular Code Answers by Language