AssemblyCSharp.Paths.GetDownloadFolder C# (CSharp) Method

GetDownloadFolder() public static method

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