* DiscImageChef.Devices/Enums.cs:

* DiscImageChef/Commands/DeviceInfo.cs:
	* DiscImageChef.Devices/Device/ScsiCommands.cs:
	  Added Plextor vendor commands.

	* DiscImageChef/Plugins.cs:
	* DiscImageChef/Commands/Analyze.cs:
	* DiscImageChef/Commands/Compare.cs:
	* DiscImageChef/Commands/CreateSidecar.cs:
	  Do not call system console directly.
This commit is contained in:
2016-01-11 19:24:17 +00:00
parent 62768b3e6b
commit c98d64e544
9 changed files with 710 additions and 7 deletions

View File

@@ -54,13 +54,13 @@ namespace DiscImageChef.Commands
if (!System.IO.File.Exists(options.InputFile1))
{
System.Console.Error.WriteLine("Input file 1 does not exist.");
DicConsole.ErrorWriteLine("Input file 1 does not exist.");
return;
}
if (!System.IO.File.Exists(options.InputFile2))
{
System.Console.Error.WriteLine("Input file 2 does not exist.");
DicConsole.ErrorWriteLine("Input file 2 does not exist.");
return;
}