示例#1
0
    public static string GetFullBasePath()
    {
        string basePath = AkInitializer.GetBasePath();

        AkBankPathUtil.LazyAppendTrailingSeparator(ref basePath);
        AkBankPathUtil.LazyConvertPathConvention(ref basePath);
        return(basePath);
    }
示例#2
0
    public static string GetPlatformBasePath()
    {
        string result = string.Empty;

        result = Path.Combine(AkBankPathUtil.GetFullBasePath(), AkBankPathUtil.GetPlatformSubDirectory());
        AkBankPathUtil.LazyAppendTrailingSeparator(ref result);
        AkBankPathUtil.LazyConvertPathConvention(ref result);
        return(result);
    }