1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00
joplin/ReactNativeClient/lib/fs-driver-base.js

23 lines
586 B
JavaScript
Raw Normal View History

class FsDriverBase {
async isDirectory(path) {
const stat = await this.stat(path);
return !stat ? false : stat.isDirectory();
}
async readDirStatsHandleRecursion_(basePath, stat, output, options) {
if (options.recursive && stat.isDirectory()) {
2018-03-09 17:49:35 +00:00
const subPath = basePath + "/" + stat.path;
const subStats = await this.readDirStats(subPath, options);
for (let j = 0; j < subStats.length; j++) {
const subStat = subStats[j];
2018-03-09 17:49:35 +00:00
subStat.path = stat.path + "/" + subStat.path;
output.push(subStat);
}
}
return output;
}
}
2018-03-09 17:49:35 +00:00
module.exports = FsDriverBase;