mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* DiscImageChef.Filters/PCExchange.cs:
Removed debug messages. * DiscImageChef.Filesystems/FAT.cs: Corrected syntax bug. * DiscImageChef.Filters/Filters.cs: Corrected handling of "No filter". * DiscImageChef.Filesystems/AmigaDOS.cs: Corrected detection of FFS on hard disks and FFS with block sizes > sector size.
This commit is contained in:
@@ -189,7 +189,6 @@ namespace DiscImageChef.Filters
|
||||
|
||||
public override bool Identify(byte[] buffer)
|
||||
{
|
||||
System.Console.WriteLine("parentFolder");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -201,11 +200,8 @@ namespace DiscImageChef.Filters
|
||||
|
||||
public override bool Identify(string path)
|
||||
{
|
||||
System.Console.WriteLine("parentFolder");
|
||||
string parentFolder = Path.GetDirectoryName(path);
|
||||
|
||||
System.Console.WriteLine("parentFolder {0}", parentFolder);
|
||||
|
||||
if(!File.Exists(Path.Combine(parentFolder, FinderInfo)))
|
||||
return false;
|
||||
|
||||
@@ -314,12 +310,6 @@ namespace DiscImageChef.Filters
|
||||
dataLen = new FileInfo(dataPath).Length;
|
||||
rsrcLen = new FileInfo(rsrcPath).Length;
|
||||
|
||||
System.Console.WriteLine("dataPath = {0}", dataPath);
|
||||
System.Console.WriteLine("rsrcPath = {0}", rsrcPath);
|
||||
System.Console.WriteLine("dataLen = {0}", dataLen);
|
||||
System.Console.WriteLine("rsrcLen = {0}", rsrcLen);
|
||||
System.Console.WriteLine("basePath = {0}", basePath);
|
||||
|
||||
basePath = path;
|
||||
opened = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user