Answers for "check if a path is exist or not"

36

python check if path does not exist

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on April-10-2020
26

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 is exist or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language