You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey this tool are awesome thanks.
One thing, we really need support ignore all
Any tips to do this
Example i want allow only if is a files, and the extension is .json and .webm
constscanDATA2=()=>{constrecursive=require('recursive-readdir');functionignoreFunc(file,stats){constisDirectory=stats.isDirectory();if(stats.isDirectory()){returnfile.contains('SOURCE')||file.contains('source');}elseif(stats.isFile()){return!(['.json','.webm'].contains(file));};};recursive("data2",[ignoreFunc],(err,files)=>{files.forEach(PATH=>{constsplit=PATH.replace('.','\\').split('\\');constname=split[split.length-2];if(name.contains('-')){// isMultipackconst_name=name.split('-')[0];// nom sans -0!this.LINKS[_name]&&(this.LINKS[_name]=[]);this.LINKS[_name].push({name:name,path:PATH.replace(/\\/g,"/")});}else{this.LINKS[name]=PATH.replace(/\\/g,"/");};});returnnextStep();});};
the issue with the ignore files, is if a user add a new file in folder, it will scan.
The text was updated successfully, but these errors were encountered:
jonlepage
changed the title
ignore all
ignore all, authorize callback ?
May 26, 2019
Hey this tool are awesome thanks.
One thing, we really need support ignore all
Any tips to do this
Example i want allow only if is a files, and the extension is
.json
and.webm
the issue with the ignore files, is if a user add a new file in folder, it will scan.
The text was updated successfully, but these errors were encountered: