Ejemplo n.º 1
0
        public void Delete()
        {
            this.Clear();

            try
            {
                ADSFile.Write("", this.Path, this.Name);
            }
            catch (Exception ex)
            {
                Output.WriteException(ex);
            }
        }
Ejemplo n.º 2
0
        public void Save()
        {
            try
            {
                if (Data.IsNullOrWhiteSpace())
                {
                    return;
                }


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