您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

18 行
325 B

  1. using System;
  2. using System.IO;
  3. namespace SUISS.Core
  4. {
  5. public static class PathHandler
  6. {
  7. public static string Combine(string basePath, string subPath)
  8. {
  9. if (subPath.StartsWith("/"))
  10. {
  11. subPath = subPath.Substring(1);
  12. }
  13. return Path.Combine(basePath, subPath).Replace("\\", "/");
  14. }
  15. }
  16. }