Esempio n. 1
0
        public void Save(string filename = "")
        {
            if (!string.IsNullOrEmpty(filename))
            {
                FileInfo = new FileInfo(filename);
            }

            // Save As...
            if (!string.IsNullOrEmpty(filename))
            {
                _nus3.Save(FileInfo.FullName, _isZlibCompressed);
                _nus3.Close();
            }
            else
            {
                // Create the temp file
                _nus3.Save(FileInfo.FullName + ".tmp", _isZlibCompressed);
                _nus3.Close();
                // Delete the original
                FileInfo.Delete();
                // Rename the temporary file
                File.Move(FileInfo.FullName + ".tmp", FileInfo.FullName);
            }

            // Reload the new file to make sure everything is in order
            Load(FileInfo.FullName);
        }
Esempio n. 2
0
        public SaveResult Save(string filename = "")
        {
            SaveResult result = SaveResult.Success;

            if (filename.Trim() != string.Empty)
            {
                _fileInfo = new FileInfo(filename);
            }

            try
            {
                _nus3.Save(_fileInfo.FullName, isZlibCompressed);
            }
            catch
            {
                result = SaveResult.Failure;
            }

            return(result);
        }