diff --git a/SabreTools.Library/FileTypes/Folder.cs b/SabreTools.Library/FileTypes/Folder.cs index bf75e549..9b75f005 100644 --- a/SabreTools.Library/FileTypes/Folder.cs +++ b/SabreTools.Library/FileTypes/Folder.cs @@ -221,7 +221,8 @@ namespace SabreTools.Library.FileTypes /// This works for now, but it can be sped up by using Ionic.Zip or another zlib wrapper that allows for header values built-in. See edc's code. public virtual bool Write(string inputFile, string outDir, Rom rom, bool date = false, bool romba = false) { - throw new NotImplementedException(); + FileStream fs = Utilities.TryOpenRead(inputFile); + return Write(fs, outDir, rom, date, romba); } ///