const fs = require('fs'); const path = './file.txt'; if (!fs.existsSync(path)) { return ('this path dosn't exist'); } else { return true; }