Hamlet

Results 1 issues of Hamlet

系统:Windows 11 企业版 22H2 bug定位发现是glob无法读取data_2文件,反复尝试发现使用path.join后无法使用匹配符,将windowsPathsNoEscape删除,放弃使用path.join,增加cwd属性后可以成功,搜索发现貌似没人提出此类问题,可能只是个人偶发情况,如果有人碰到此类问题可以修改src=>main=>utils=>getCacheText后重新编译生成。 ``` async function getCacheText(gamePath) { const results = await glob('webCaches{/,/*/}Cache/Cache_Data/data_2',{ cwd:gamePath, stat: true, withFileTypes: true, nodir: true, // windowsPathsNoEscape: true }) const timeSortedFiles = results...