diff --git a/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs b/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs index ddb9b9506..aa52675de 100644 --- a/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs +++ b/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs @@ -11,6 +11,9 @@ using System.Text; namespace Cosmos.System.FileSystem.FAT.Listing { + /// + /// FatDirectoryEntry class. Represent directory/file. + /// internal class FatDirectoryEntry : DirectoryEntry { private readonly uint mEntryHeaderDataOffset; @@ -19,6 +22,17 @@ namespace Cosmos.System.FileSystem.FAT.Listing // Size is UInt32 because FAT doesn't support bigger. // Don't change to UInt64 + /// + /// Initializes a new instance of the class. + /// + /// The file system that contains the directory entry. + /// The parent directory entry or null if the current entry is the root. + /// The full path to the entry. + /// The entry name. + /// The size of the entry. + /// The first cluster of the entry. + /// The entry header data offset. + /// The entry type. public FatDirectoryEntry( FatFileSystem aFileSystem, FatDirectoryEntry aParent,