Espera.Core.LocalSong.ClearCache C# (CSharp) 메소드

ClearCache() 개인적인 메소드

private ClearCache ( ) : void
리턴 void
        internal override void ClearCache()
        {
            if (this.IsRemovable && File.Exists(this.StreamingPath))
            {
                File.Delete(this.StreamingPath);
            }

            this.StreamingPath = null;
            this.IsCached = false;
        }