prevent-screenshot
v1.1.3
Published
Starting as just deleting screenshots because they are hard to prevent this lib has turned into an autodeleter that listens on a directory/directories and deletes all/files that match a string parse that have been added after the program started running.
Downloads
10
Readme
prevent-screenshot
Description: Sotarting as just deleting screenshots because they are hard to prevent this littleb has turned into an autodeleter that listens on a directory/directories and dele tes all/files that match a string parse that have been added after the program started running.,
Getting started:
npm install prevent-screenshot
Example:
var preventSC = require('prevent-screenshot');
preventSC('DIR',true) //will delete all new files after start of application
preventSC('DIR','tester')//will delete files containing the word tester
preventSC('DIR',['tester','Screen Shot'] // will delete files containing the word tester or Screen Shot
preventSC('DIR','tester','subDir') //will watch DIR minus subDir and delete anything that matches the word tester.
explained: the above will listen on the directory passed in. Any time a new file is added to that directory it will do some string parsing and date comparison to decide if that new file needs to be deleted or not. Only deletes files that are new after program was started.
Method:
preventSC(arg1,arg2);
params:
arg1: the directory that screenshots are saved to.
arg2: can be an array of strings , single string or boolean that will tell program to delete all new
arg3(optional): string of stuff that is filtered from the watch when it is started(ex. subdir)
return: NONE //deletes new screenshots.