Better error msg for invalid input path

This commit is contained in:
n00mkrad
2021-09-04 13:15:18 +02:00
parent 3ccba76695
commit f3b7969ae2
2 changed files with 6 additions and 2 deletions

View File

@@ -199,7 +199,7 @@ namespace Flowframes.Main
{
if (!IoUtils.IsDirValid(path))
{
ShowMessage("Input directory is not valid.");
ShowMessage("Input directory is not valid.\nMake sure it still exists and hasn't been renamed or moved!");
I.Cancel();
return false;
}
@@ -208,7 +208,7 @@ namespace Flowframes.Main
{
if (!IsVideoValid(path))
{
ShowMessage("Input video file is not valid.");
ShowMessage("Input video file is not valid.\nMake sure it still exists and hasn't been renamed or moved!");
return false;
}
}