fix: Use File Enumeration/Deletion for Auto-Backup Limit Cleanup#1750
Merged
Conversation
自动备份清理逻辑原本使用 `Directory.EnumerateDirectories` 查找旧备份,但自动备份实际均为 `.zip` 文件,导致查询结果始终为空,`AutoBackupLimit` 限制未生效,备份文件会无限累积。这个提交将 `Directory.EnumerateDirectories` 改为 `Directory.EnumerateFiles`、`Directory.Delete` 改为 `File.Delete`,以正确识别并清理过期备份文件,使备份数量限制正常生效。 Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Member
|
@codex review |
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
HelloWRC
approved these changes
Apr 12, 2026
Member
Koharu-Mizuki
pushed a commit
to Koharu-Mizuki/ClassIsland-RB
that referenced
this pull request
May 24, 2026
…ssIsland#1750) 自动备份清理逻辑原本使用 `Directory.EnumerateDirectories` 查找旧备份,但自动备份实际均为 `.zip` 文件,导致查询结果始终为空,`AutoBackupLimit` 限制未生效,备份文件会无限累积。这个提交将 `Directory.EnumerateDirectories` 改为 `Directory.EnumerateFiles`、`Directory.Delete` 改为 `File.Delete`,以正确识别并清理过期备份文件,使备份数量限制正常生效。 Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Koharu-Mizuki
pushed a commit
to Koharu-Mizuki/ClassIsland-RB
that referenced
this pull request
Jun 19, 2026
…ssIsland#1750) 自动备份清理逻辑原本使用 `Directory.EnumerateDirectories` 查找旧备份,但自动备份实际均为 `.zip` 文件,导致查询结果始终为空,`AutoBackupLimit` 限制未生效,备份文件会无限累积。这个提交将 `Directory.EnumerateDirectories` 改为 `Directory.EnumerateFiles`、`Directory.Delete` 改为 `File.Delete`,以正确识别并清理过期备份文件,使备份数量限制正常生效。 Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

这个 Pull Request 做了什么?
自动备份清理逻辑原本使用
Directory.EnumerateDirectories查找旧备份,但自动备份实际均为.zip文件,导致查询结果始终为空,AutoBackupLimit限制未生效,备份文件会无限累积。这个 PR 将Directory.EnumerateDirectories改为Directory.EnumerateFiles、Directory.Delete改为File.Delete,以正确识别并清理过期备份文件,使备份数量限制正常生效。检查清单