25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System.IO;
- using UnityEngine;
-
- namespace UnifiedIO.SystemIO.Internal
- {
- public static class Path
- {
- public static string BaseFolder = Application.persistentDataPath;
-
- public static string GetFullPath(string path)
- {
- if (path.StartsWith("/") || path.StartsWith("\\"))
- {
- path = path.Substring(1);
- }
- return System.IO.Path.Combine(BaseFolder, path);
- }
- }
- }
|