mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implement CopyTape reading.
This commit is contained in:
@@ -34,8 +34,9 @@ namespace DiscImageChef.DiscImages.CopyTape
|
||||
{
|
||||
public partial class CopyTape
|
||||
{
|
||||
const string BlockRegex = @"^CPTP:BLK (?<blockSize>\d{6})\n$";
|
||||
const string FilemarkRegex = @"^CPTP:MRK\n$";
|
||||
const string EndOfTapeRegex = @"^CPTP:EOT\n$";
|
||||
const string BlockRegex = @"^CPTP:BLK (?<blockSize>\d{6})\n$";
|
||||
const string PartialBlockRegex = @"^CPTP:BLK $";
|
||||
const string FilemarkRegex = @"^CPTP:MRK\n$";
|
||||
const string EndOfTapeRegex = @"^CPTP:EOT\n$";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user