|
@@ -236,19 +236,21 @@ async function _read_music_info(filePath: string) : PromiseResult<IAudioMetadata
|
|
|
*/
|
|
|
async function _scan_dir(scanSetting: MusicScanSetting, basePath: string = "") :PromiseResult<any>
|
|
|
{
|
|
|
- let scanPath = basePath? scanSetting.path : scanSetting.path;
|
|
|
+
|
|
|
+ let scanPath = basePath? basePath : scanSetting.path;
|
|
|
let [err, res] = await handle( fs.readdir(scanPath))
|
|
|
let fileArray: string[] = [];
|
|
|
if (err) {
|
|
|
logger.error(`[扫描目录失败] ${err.message}`)
|
|
|
return [err, false];
|
|
|
}
|
|
|
+
|
|
|
|
|
|
for (let filename of res as string[])
|
|
|
{
|
|
|
- console.log(filename)
|
|
|
+
|
|
|
|
|
|
- let filePath = scanSetting.path + '/' + filename;
|
|
|
+ let filePath = path.join(scanPath, filename)
|
|
|
|
|
|
if (filename.startsWith('.'))
|
|
|
{
|
|
@@ -327,8 +329,8 @@ export async function _scan_(scanSetting: MusicScanSetting)
|
|
|
return;
|
|
|
}
|
|
|
scan_task[scanSetting.id] = true;
|
|
|
- console.log(scanSetting)
|
|
|
- console.log(scanSetting.path)
|
|
|
+
|
|
|
+
|
|
|
|
|
|
let catchPath = path.join(scanSetting.path, './.catch.json')
|
|
|
|
|
@@ -338,7 +340,7 @@ export async function _scan_(scanSetting: MusicScanSetting)
|
|
|
fs.writeFileSync(catchPath, '{}');
|
|
|
}
|
|
|
let catchInfo = JSON.parse(fs.readFileSync(catchPath, 'utf-8'));
|
|
|
- console.log(catchInfo)
|
|
|
+
|
|
|
let [err, fileArray] = await _scan_dir(scanSetting);
|
|
|
|
|
|
let success_count = 0;
|