예제 #1
0
파일: Data.cs 프로젝트: jeason0813/Asmodat
        public void Delete()
        {
            this.Clear();

            try
            {
                ADSFile.Write("", this.Path, this.Name);
            }
            catch (Exception ex)
            {
                Output.WriteException(ex);
            }
        }
예제 #2
0
파일: Data.cs 프로젝트: jeason0813/Asmodat
        public void Save()
        {
            try
            {
                if (Data.IsNullOrWhiteSpace())
                {
                    return;
                }


                ADSFile.Write(DataRawEncryptedCompressed, this.Path, this.Name);
            }
            catch (Exception ex)
            {
                Output.WriteException(ex);
            }
        }