Files
privilege-escalation-awesom…/winPEAS/winPEASexe/winPEAS/Helpers/CustomFileInfo.cs
carlospolop bbc22b3a91 update
2022-07-30 12:06:10 +02:00

21 lines
572 B
C#

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