mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
10c5adadb8
Add more xmldoc Move files/functions to better spot Less allocation on hover glow fix honeytree dppt group/slot/shake rand call (ty real.96)
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public static partial class Util
|
|
{
|
|
/// <summary>
|
|
/// Cleans the local <see cref="fileName"/> by removing any invalid filename characters.
|
|
/// </summary>
|
|
/// <returns>New string without any invalid characters.</returns>
|
|
public static string CleanFileName(string fileName)
|
|
{
|
|
Span<char> result = stackalloc char[fileName.Length];
|
|
int ctr = GetCleanFileName(fileName, result);
|
|
if (ctr == fileName.Length)
|
|
return fileName;
|
|
return new string(result[..ctr]);
|
|
}
|
|
|
|
/// <inheritdoc cref="CleanFileName(string)"/>
|
|
public static string CleanFileName(ReadOnlySpan<char> fileName)
|
|
{
|
|
Span<char> result = stackalloc char[fileName.Length];
|
|
int ctr = GetCleanFileName(fileName, result);
|
|
if (ctr == fileName.Length)
|
|
return fileName.ToString();
|
|
return new string(result[..ctr]);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes any invalid filename characters from the input string.
|
|
/// </summary>
|
|
/// <param name="input">String to clean</param>
|
|
/// <param name="output">Buffer to write the cleaned string to</param>
|
|
/// <returns>Length of the cleaned string</returns>
|
|
private static int GetCleanFileName(ReadOnlySpan<char> input, Span<char> output)
|
|
{
|
|
ReadOnlySpan<char> invalid = Path.GetInvalidFileNameChars();
|
|
int ctr = 0;
|
|
foreach (var c in input)
|
|
{
|
|
if (!invalid.Contains(c))
|
|
output[ctr++] = c;
|
|
}
|
|
return ctr;
|
|
}
|
|
}
|