Skip to content

Instantly share code, notes, and snippets.

@Andyliwr
Created June 5, 2019 12:56
Show Gist options
  • Save Andyliwr/8bf2b7f55bec18c6d8a066421ae75360 to your computer and use it in GitHub Desktop.
Save Andyliwr/8bf2b7f55bec18c6d8a066421ae75360 to your computer and use it in GitHub Desktop.
node判断是否为目录
var fs = require('fs');
var stats = fs.statSync("c:\\dog.jpg");
console.log('is file ? ' + stats.isFile());
var stats = fs.statSync("c:\\demo");
console.log('is directory ? ' + stats.isDirectory());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment