Files
privilege-escalation-awesom…/winPEAS/winPEASexe/winPEAS/Helpers/CustomFileInfo.cs
makikvues 2a1d2cfb52 - implemented YAML checks
- updated sensitive_files.yaml
2021-07-06 13:57:25 +02:00

19 lines
502 B
C#

namespace winPEAS.Helpers
{
internal class CustomFileInfo
{
public string Filename { get; }
public string Extension { get; }
public string FullPath { get; }
public bool IsDirectory { get; }
public CustomFileInfo(string filename, string extension, string fullPath, bool isDirectory)
{
Filename = filename;
Extension = extension;
FullPath = fullPath;
IsDirectory = isDirectory;
}
}
}