mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 12:33:12 +00:00
Improve batch exporting to catch files inside archives to skip errors.
This commit is contained in:
parent
ab984fe93a
commit
45805b6272
1 changed files with 46 additions and 31 deletions
|
@ -1007,6 +1007,7 @@ namespace Toolbox
|
|||
|
||||
Cursor.Current = Cursors.Default;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region TabMdiWindows
|
||||
|
@ -1378,13 +1379,14 @@ namespace Toolbox
|
|||
}
|
||||
}
|
||||
|
||||
private List<string> failedFiles = new List<string>();
|
||||
private List<string> batchExportFileList = new List<string>();
|
||||
private void BatchExportModels(string[] files, string outputFolder)
|
||||
{
|
||||
List<string> Formats = new List<string>();
|
||||
Formats.Add("DAE (.dae)");
|
||||
|
||||
List<string> failedFiles = new List<string>();
|
||||
failedFiles = new List<string>();
|
||||
|
||||
BatchFormatExport form = new BatchFormatExport(Formats);
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
|
@ -1392,15 +1394,17 @@ namespace Toolbox
|
|||
string extension = form.GetSelectedExtension();
|
||||
foreach (var file in files)
|
||||
{
|
||||
IFileFormat fileFormat = null;
|
||||
try
|
||||
{
|
||||
var fileFormat = STFileLoader.OpenFileFormat(file);
|
||||
SearchFileFormat(form.BatchSettings, fileFormat, extension, outputFolder, ExportMode.Models);
|
||||
fileFormat = STFileLoader.OpenFileFormat(file);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
failedFiles.Add($"{file} \n Error:\n {ex} \n");
|
||||
}
|
||||
|
||||
SearchFileFormat(form.BatchSettings, fileFormat, extension, outputFolder, ExportMode.Models);
|
||||
}
|
||||
batchExportFileList.Clear();
|
||||
}
|
||||
|
@ -1429,7 +1433,7 @@ namespace Toolbox
|
|||
Formats.Add("Tagged Image File Format (.tiff)");
|
||||
Formats.Add("ASTC (.astc)");
|
||||
|
||||
List<string> failedFiles = new List<string>();
|
||||
failedFiles = new List<string>();
|
||||
|
||||
BatchFormatExport form = new BatchFormatExport(Formats);
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
|
@ -1437,15 +1441,17 @@ namespace Toolbox
|
|||
string extension = form.GetSelectedExtension();
|
||||
foreach (var file in files)
|
||||
{
|
||||
IFileFormat fileFormat = null;
|
||||
try
|
||||
{
|
||||
var fileFormat = STFileLoader.OpenFileFormat(file);
|
||||
SearchFileFormat(form.BatchSettings, fileFormat, extension, outputFolder, ExportMode.Textures);
|
||||
fileFormat = STFileLoader.OpenFileFormat(file);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
failedFiles.Add($"{file} \n Error:\n {ex} \n");
|
||||
}
|
||||
|
||||
SearchFileFormat(form.BatchSettings, fileFormat, extension, outputFolder, ExportMode.Textures);
|
||||
}
|
||||
batchExportFileList.Clear();
|
||||
}
|
||||
|
@ -1538,7 +1544,16 @@ namespace Toolbox
|
|||
ArchiveFilePath = Path.Combine(outputFolder, Path.GetFileNameWithoutExtension(((IFileFormat)archiveFile).FileName));
|
||||
|
||||
foreach (var file in archiveFile.Files)
|
||||
{
|
||||
try
|
||||
{
|
||||
SearchFileFormat(settings, file.OpenFile(), extension, ArchiveFilePath, exportMode);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
failedFiles.Add($"{file} \n Error:\n {ex} \n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue