ฉันเพิ่งย้าย MP3 จำนวนมากจากหลาย ๆ ที่ไปยังที่เก็บ ฉันสร้างชื่อไฟล์ใหม่โดยใช้แท็ก ID3 (ขอบคุณ TagLib-Sharp!) และฉันสังเกตว่าฉันได้รับSystem.NotSupportedException
:
"ไม่รองรับรูปแบบของเส้นทางที่กำหนด"
นี้ถูกสร้างขึ้นโดยการอย่างใดอย่างหนึ่งหรือFile.Copy()
Directory.CreateDirectory()
ใช้เวลาไม่นานในการรู้ว่าชื่อไฟล์ของฉันต้องได้รับการทำให้สะอาด ดังนั้นฉันจึงทำสิ่งที่ชัดเจน:
public static string SanitizePath_(string path, char replaceChar)
{
string dir = Path.GetDirectoryName(path);
foreach (char c in Path.GetInvalidPathChars())
dir = dir.Replace(c, replaceChar);
string name = Path.GetFileName(path);
foreach (char c in Path.GetInvalidFileNameChars())
name = name.Replace(c, replaceChar);
return dir + name;
}
ฉันประหลาดใจฉันยังคงได้รับข้อยกเว้น ปรากฎว่า ':' ไม่ได้อยู่ในชุดPath.GetInvalidPathChars()
เพราะมันถูกต้องใน root path ฉันคิดว่ามันสมเหตุสมผล - แต่นี่ต้องเป็นปัญหาที่พบได้บ่อย ใครบ้างมีรหัสย่อที่ sanitizes เส้นทางหรือไม่ อย่างละเอียดที่สุดที่ฉันคิดขึ้นมา แต่รู้สึกว่ามันน่าจะเกินกำลัง
// replaces invalid characters with replaceChar
public static string SanitizePath(string path, char replaceChar)
{
// construct a list of characters that can't show up in filenames.
// need to do this because ":" is not in InvalidPathChars
if (_BadChars == null)
{
_BadChars = new List<char>(Path.GetInvalidFileNameChars());
_BadChars.AddRange(Path.GetInvalidPathChars());
_BadChars = Utility.GetUnique<char>(_BadChars);
}
// remove root
string root = Path.GetPathRoot(path);
path = path.Remove(0, root.Length);
// split on the directory separator character. Need to do this
// because the separator is not valid in a filename.
List<string> parts = new List<string>(path.Split(new char[]{Path.DirectorySeparatorChar}));
// check each part to make sure it is valid.
for (int i = 0; i < parts.Count; i++)
{
string part = parts[i];
foreach (char c in _BadChars)
{
part = part.Replace(c, replaceChar);
}
parts[i] = part;
}
return root + Utility.Join(parts, Path.DirectorySeparatorChar.ToString());
}
การปรับปรุงใด ๆ เพื่อให้ฟังก์ชั่นนี้เร็วขึ้นและบาร็อคน้อยจะได้รับการชื่นชมมาก