mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
12 lines
257 B
C#
12 lines
257 B
C#
using System.IO;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public static partial class Util
|
|
{
|
|
public static string CleanFileName(string fileName)
|
|
{
|
|
return string.Concat(fileName.Split(Path.GetInvalidFileNameChars()));
|
|
}
|
|
}
|
|
}
|