Skip to content
New issue

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

Renaming error in case of file duplication #135

Open
indexlang opened this issue Aug 7, 2024 · 0 comments
Open

Renaming error in case of file duplication #135

indexlang opened this issue Aug 7, 2024 · 0 comments

Comments

@indexlang
Copy link

indexlang commented Aug 7, 2024

When I uploaded the file, I found a 500 error. After debugging the source code, I found the error in EasyAbp FileManagement.Files.FileRepository,
This function: GetileNameWithNextserialize
Found data:
error
My database is MySQL, and it seems that queries cannot distinguish between half width and full width curly braces.

However, during the next query.

var nextNumber = fileNames .Select(x => x.Substring(part1.Length, x.LastIndexOf(part2, StringComparison.Ordinal) - part1.Length)) .Select(x => int.TryParse(x, out var number) ? number : 0).Where(x => x > 0).OrderBy(x => x) .TakeWhile((x, i) => x == i + 1).LastOrDefault() + 1;
This line did distinguish between full and half corners, resulting in ArgumentOutOfRangeException error. The reason is that x.LastIndexOf (part2, StringComparison. Ordinal) obtained a value of -1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant