mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added generating XML metadata for file systems.
This commit is contained in:
@@ -219,6 +219,14 @@ namespace DiscImageChef.Plugins
|
||||
besb.indices_ag, besb.indices_len, besb.indices_len * besb.block_size).AppendLine();
|
||||
|
||||
information = sb.ToString();
|
||||
|
||||
xmlFSType = new Schemas.FileSystemType();
|
||||
xmlFSType.Clusters = besb.num_blocks;
|
||||
xmlFSType.ClusterSize = (int)besb.block_size;
|
||||
xmlFSType.Dirty = besb.flags == BEFS_DIRTY;
|
||||
xmlFSType.FreeClusters = besb.num_blocks - besb.used_blocks;
|
||||
xmlFSType.Type = "BeFS";
|
||||
xmlFSType.VolumeName = besb.name;
|
||||
}
|
||||
|
||||
struct BeSuperBlock
|
||||
|
||||
Reference in New Issue
Block a user