Small typos fixed

This commit is contained in:
Administrator
2017-01-02 14:40:33 +01:00
parent 5025f0e9fc
commit 6a953aa234
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ namespace OneDriveArchiver
var fi = new FileInfo(filename); var fi = new FileInfo(filename);
if (fi.Length == 0) if (fi.Length == 0)
{ {
Console.WriteLine($"Deleting file {filename} as it has zero bytes content."); Console.WriteLine($"OneDriveArchiver: Deleting file {filename} as it has zero bytes content.");
File.Delete(filename); File.Delete(filename);
return; return;
} }

View File

@@ -12,7 +12,7 @@ namespace OneDriveArchiver
if (args.Length != 1) if (args.Length != 1)
{ {
// handle improper arguments // handle improper arguments
Console.WriteLine("OneDriverArchiver: Please specify a directory with images mapped to a onedrive folder."); Console.WriteLine("OneDriverArchiver: Please specify a directory with files mapped to a Microsoft OneDrive folder.");
} }
else else
{ {