We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在只修改音乐文件的数据而不重命名时(比如,使用音乐标签更新标签),软件不能检测到文件夹已经更新。原因如下:
当前版本中,软件按照以下逻辑更新数据库:
但是,Windows下,文件夹的更新日期只在以下情况更新:
所以,使用音乐标签软件修改音乐标签时,软件无法自动检测到文件夹更新。可以手动更新。
或许可以用 FileSystemEntity.watch 监听文件夹内的更改,但那个只有软件运行时才有效。刚启动时不能检测到之前的更改。
FileSystemEntity.watch
也可以直接使用 Windows 的索引文件和搜索功能(Windows 的搜索功能是可以被第三方调用的),但是太麻烦了。Windows 的 API 全都非常难读懂。
有些音乐播放器会在后台常驻一个线程监听修改,但我不太愿意这么做。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在只修改音乐文件的数据而不重命名时(比如,使用音乐标签更新标签),软件不能检测到文件夹已经更新。原因如下:
当前版本中,软件按照以下逻辑更新数据库:
但是,Windows下,文件夹的更新日期只在以下情况更新:
所以,使用音乐标签软件修改音乐标签时,软件无法自动检测到文件夹更新。可以手动更新。
或许可以用
FileSystemEntity.watch
监听文件夹内的更改,但那个只有软件运行时才有效。刚启动时不能检测到之前的更改。也可以直接使用 Windows 的索引文件和搜索功能(Windows 的搜索功能是可以被第三方调用的),但是太麻烦了。Windows 的 API 全都非常难读懂。
有些音乐播放器会在后台常驻一个线程监听修改,但我不太愿意这么做。
The text was updated successfully, but these errors were encountered: