using System; using System.IO; using BinaryObjectScanner.Interfaces; using BinaryObjectScanner.Matching; namespace BinaryObjectScanner.FileType { /// /// StarForce Filesystem file /// /// public class SFFS : IExtractable, IDetectable { /// public string Detect(string file, bool includeDebug) { if (!File.Exists(file)) return null; using (var fs = File.Open(file, FileMode.Open, FileAccess.Read, FileShare.Read)) { return Detect(fs, file, includeDebug); } } /// public string Detect(Stream stream, string file, bool includeDebug) { try { byte[] magic = new byte[16]; stream.Read(magic, 0, 16); if (magic.StartsWith(new byte?[] { 0x53, 0x46, 0x46, 0x53 })) return "StarForce Filesystem Container"; } catch (Exception ex) { if (includeDebug) Console.WriteLine(ex); } return null; } /// public string Extract(string file, bool includeDebug) { if (!File.Exists(file)) return null; using (var fs = File.Open(file, FileMode.Open, FileAccess.Read, FileShare.Read)) { return Extract(fs, file, includeDebug); } } /// public string Extract(Stream stream, string file, bool includeDebug) { return null; } } }