Qiniu.Storage.Persistent.ResumeRecorder.del C# (CSharp) Method

del() public method

删除上传进度记录
public del ( string key ) : void
key string 记录文件名
return void
        public void del(string key)
        {
            string filePath = Path.Combine(this.dir, key);
            try
            {
                File.Delete(filePath);
            }
            catch (Exception)
            {

            }
        }