AssemblyCSharp.Paths.GetDownloadFolder C# (CSharp) 메소드

GetDownloadFolder() 공개 정적인 메소드

public static GetDownloadFolder ( ) : string
리턴 string
        public static string GetDownloadFolder()
        {
            var path = Path.Combine(GetCacheAssetsPath(), ResourcePaths.DOWNLOAD_PATH);
            FileHelper.CreateNonExistentDirectory(path);
            return path;
        }