mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added HFS+. If HFS detects it has wrapped a HFS+ volume, inform that it's not its filesystem. Added a workaround in calculation with UInt32 and ulong that made HFS and MFS show a bad date. git-svn-id: svn://claunia.com/FileSystemIDandChk@2 17725271-3d32-4980-a8cb-9ff532f270ba
20 lines
379 B
C#
20 lines
379 B
C#
/*using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using FileSystemIDandChk;
|
|
|
|
namespace FileSystemIDandChk
|
|
{
|
|
public class FFS
|
|
{
|
|
private DateTime UNIXDateDelta = new DateTime(1970, 01, 01, 00, 00, 00);
|
|
|
|
public FFS ()
|
|
{
|
|
base.Name = "Apple Hierarchical File System";
|
|
base.PluginUUID = new Guid("8f4ee9d5-6820-4d7a-ae6b-3a4a49e7a88f");
|
|
}
|
|
}
|
|
}
|
|
|
|
*/ |