Improve logging and Nodump handling

This commit is contained in:
Matt Nadareski
2016-05-18 16:37:39 -07:00
parent 3ee1753b21
commit b08433cd52
3 changed files with 11 additions and 5 deletions

View File

@@ -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 = "",