コード例 #1
0
ファイル: _Files.cs プロジェクト: EatYourBeetS/steam-keychain
 public static string GetPath(SaveLocation saveLocation, string relativePath)
 {
     return(saveLocation != SaveLocation.Absolute
         ? SystemPath.Combine(_saveLocations[saveLocation], relativePath).AbsolutePath
         : SystemPath.Create(relativePath).AbsolutePath);
 }