[Enums, FileTypes/, Utilities] Use new enum, new class

Add a new "BaseFile" class for potential future use. This should be the "base" for all future files and folders that could exist. This is likely to change over time.
This commit is contained in:
Matt Nadareski
2018-02-15 22:06:20 -08:00
parent 336388c717
commit 3a45dcc1a5
18 changed files with 192 additions and 36 deletions

View File

@@ -40,6 +40,7 @@ namespace SabreTools.Library.FileTypes
public TapeArchive()
: base()
{
_fileType = FileType.TapeArchive;
}
/// <summary>
@@ -50,7 +51,7 @@ namespace SabreTools.Library.FileTypes
public TapeArchive(string filename)
: base(filename)
{
_archiveType = ArchiveType.Tar;
_fileType = FileType.TapeArchive;
}
#endregion