From 377ce12dca15e4eaf9b3fc4dfc59b1e3ddc6d1bc Mon Sep 17 00:00:00 2001 From: Elia Sulimanov Date: Fri, 5 Jun 2020 21:11:09 +0300 Subject: [PATCH] Started working on FatDirectoryEntry api docs --- .../FileSystem/FAT/Listing/FatDiretoryEntry.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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,