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 void Unload()
 {
     _nus3?.Close();
 }