Master sync

This commit is contained in:
Administrator
2017-01-04 07:56:51 +01:00
parent 6a953aa234
commit e842f3a084

View File

@@ -15,6 +15,13 @@ namespace OneDriveArchiver
Console.WriteLine("OneDriverArchiver: Please specify a directory with files mapped to a Microsoft OneDrive folder.");
}
else
{
// check if the directory to process really exists
if (!Directory.Exists(args[0]))
{
Console.WriteLine($"The directory '{args[0]}' does not exist. Please specify another one.");
}
else
{
// normal processing...
Console.WriteLine("OneDriverArchiver: starting up...");
@@ -39,4 +46,5 @@ namespace OneDriveArchiver
}
}
}
}
}