
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
check-folder-exists
Advanced tools
Node module to check if local file path contains a specified folder name using NodeJS
This module returns a promise. This package is available via npm
npm install --save check-folder-exists
In the example below we are checking if the filePath (first parameter) /Users/jremi/Documents has folderName (second parameter) existing named Foo.
Note: This example can be found in this repository inside /example.js
var checkFolderExists = require('check-folder-exists');
checkFolderExists('/Users/jremi/Documents/', 'Foo')
.then(function(res){
console.log(res);
})
.catch(function(err){
console.log(err);
});
Parameter 1, is the filePath Parameter 2, is the folderName to check
- If folder is found, promise returns true
- If folder is not found, promise returns false
- If file path is invalid, promise returns error
Shoot a message or open an issue. If you like this repo please ⭐ :)
Pull requests are welcomed.
If anyone has any code work, hit me up. I can always use some extra bucks.
FAQs
Node module to check if local file path contains a specified folder name using NodeJS
The npm package check-folder-exists receives a total of 1 weekly downloads. As such, check-folder-exists popularity was classified as not popular.
We found that check-folder-exists demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.