nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame
282 Bytes
using System.IO;
namespace Unity.PlasticSCM.Editor.AssetUtils
{
internal static class ProjectPath
{
internal static string FromApplicationDataPath(string dataPath)
{
return Path.GetDirectoryName(Path.GetFullPath(dataPath));
}
}
}