Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-filesearch

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-filesearch

Search filesystem on MAC and Windows through node

  • 0.1.6
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-filesearch

NodeJS module to aid in file searching on Mac(uses Spotlight Search) & Windows(uses Everything Search)

Example

CODE
var x = require('node-filesearch');
x.search('.doc',function(results){
	console.log(results);
});
results
results = {
	totalResults : 1, //total number of results on hard disk regardless of max result limit
	results:{
		type:'folder', //could be folder/file,
		name:'troll.doc', //filename
		path:'C://Users', //location of file
		icon:'base64 encoded png/bmp'
	},
	query:'troll' //your query to the search engine
}

FAQs

Package last updated on 13 Sep 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc