mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Improve logging and Nodump handling
This commit is contained in:
@@ -1309,7 +1309,7 @@ Make a selection:
|
||||
|
||||
if (File.Exists(filename))
|
||||
{
|
||||
logger.User("Converting " + filename);
|
||||
logger.User("Converting \"" + Path.GetFileName(filename) + "\"");
|
||||
DatData datdata = new DatData
|
||||
{
|
||||
Name = "",
|
||||
@@ -1348,7 +1348,7 @@ Make a selection:
|
||||
|
||||
foreach (string file in Directory.EnumerateFiles(filename, "*", SearchOption.AllDirectories))
|
||||
{
|
||||
logger.User("Converting " + file);
|
||||
logger.User("Converting \"" + Path.GetFullPath(file).Remove(0, filename.Length + 1) + "\"");
|
||||
DatData datdata = new DatData
|
||||
{
|
||||
Name = "",
|
||||
|
||||
Reference in New Issue
Block a user