Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/CDCheck.cs

15 lines
344 B
C#
Raw Normal View History

namespace BurnOutSharp.ProtectionType
{
public class CDCheck
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains("GetDriveType")
|| fileContent.Contains("GetVolumeInformation"))
return "CD Check";
return null;
}
}
}