fix: The issue of multi-level objects created in Windows not being displayed has been fixed (#661) (#723)

This commit is contained in:
shiro.lee
2025-10-26 12:00:13 +08:00
committed by GitHub
parent ed73e2b782
commit 6ab7619023

View File

@@ -952,6 +952,12 @@ async fn gather_results(
let mut recv = recv;
let mut entries = Vec::new();
while let Some(mut entry) = recv.recv().await {
#[cfg(windows)]
{
// normalize windows path separator
entry.name = entry.name.replace("\\", "/");
}
if returned {
continue;
}