in src/App/js/fileSystem.js [15:22]
static getFullDirStructure(localPath) {
fs.stat(localPath, function(err, stats) {
console.log(localPath);
console.log();
console.log(stats);
console.log();
});
}