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

createDirIfNotExist() private method

如果指定目录不存在,则创建
private createDirIfNotExist ( ) : void
return void
        private void createDirIfNotExist()
        {
            if(!Directory.Exists (this.dir))
            {
                Directory.CreateDirectory (this.dir);
            }
        }