false
if the
filepath does not exist or is a file.
await isDirectory(filepath)
if (await isDirectory('./dist')) {
console.info('Directory exists');
}
This follows symlinks, so if filepath
is a link to a directory, it will return
true
. If filepath
is a link to a file, it will return false
.