Answers for "how do i check if a file exists in a directory in node"

26

node check if file 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 "how do i check if a file exists in a directory in node"

Code answers related to "Javascript"

Browse Popular Code Answers by Language