示例#1
0
    static string GetCacheFilename(string url, string cachePath)
    {
        string cacheFn = string.Format("{0}/{1}/{2}", Application.temporaryCachePath, cachePath, MD5.CalcMD5(url));

        return(cacheFn);
    }