mirror of https://github.com/raandree/NTFSSecurity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
204 lines
7.1 KiB
204 lines
7.1 KiB
/* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using System.Security;
|
|
|
|
namespace Alphaleonis.Win32.Filesystem
|
|
{
|
|
/// <summary>Contains information about files in the specified directory. Used for directory handles.</summary>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Dir")]
|
|
[Serializable]
|
|
[SecurityCritical]
|
|
public sealed class FileIdBothDirectoryInfo
|
|
{
|
|
#region Constructor
|
|
|
|
#region FileIdBothDirectoryInfo
|
|
|
|
internal FileIdBothDirectoryInfo(NativeMethods.FILE_ID_BOTH_DIR_INFO fibdi, string fileName)
|
|
{
|
|
CreationTimeUtc = DateTime.FromFileTimeUtc(fibdi.CreationTime);
|
|
LastAccessTimeUtc = DateTime.FromFileTimeUtc(fibdi.LastAccessTime);
|
|
LastWriteTimeUtc = DateTime.FromFileTimeUtc(fibdi.LastWriteTime);
|
|
ChangeTimeUtc = DateTime.FromFileTimeUtc(fibdi.ChangeTime);
|
|
|
|
AllocationSize = fibdi.AllocationSize;
|
|
EndOfFile = fibdi.EndOfFile;
|
|
ExtendedAttributesSize = fibdi.EaSize;
|
|
|
|
FileAttributes = fibdi.FileAttributes;
|
|
FileId = fibdi.FileId;
|
|
FileIndex = fibdi.FileIndex;
|
|
FileName = fileName;
|
|
|
|
// ShortNameLength is the number of bytes in the short name; since we have a unicode string we must divide that by 2.
|
|
ShortName = new string(fibdi.ShortName, 0, fibdi.ShortNameLength / 2);
|
|
}
|
|
|
|
#endregion // FileIdBothDirectoryInfo
|
|
|
|
#endregion // Constructor
|
|
|
|
#region Properties
|
|
|
|
#region AllocationSize
|
|
|
|
/// <summary>The number of bytes that are allocated for the file. This value is usually a multiple of the sector or cluster size of the underlying physical device.</summary>
|
|
public long AllocationSize { get; set; }
|
|
|
|
#endregion // AllocationSize
|
|
|
|
#region ChangeTime
|
|
|
|
/// <summary>Gets the time this entry was changed.</summary>
|
|
/// <value>The time this entry was changed.</value>
|
|
public DateTime ChangeTime
|
|
{
|
|
get { return ChangeTimeUtc.ToLocalTime(); }
|
|
}
|
|
|
|
#endregion // ChangeTime
|
|
|
|
#region ChangeTimeUtc
|
|
|
|
/// <summary>Gets the time, in coordinated universal time (UTC), this entry was changed.</summary>
|
|
/// <value>The time, in coordinated universal time (UTC), this entry was changed.</value>
|
|
public DateTime ChangeTimeUtc { get; set; }
|
|
|
|
#endregion // ChangeTimeUtc
|
|
|
|
#region CreationTime
|
|
|
|
/// <summary>Gets the time this entry was created.</summary>
|
|
/// <value>The time this entry was created.</value>
|
|
public DateTime CreationTime
|
|
{
|
|
get { return CreationTimeUtc.ToLocalTime(); }
|
|
}
|
|
|
|
#endregion // CreationTime
|
|
|
|
#region CreationTimeUtc
|
|
|
|
/// <summary>Gets the time, in coordinated universal time (UTC), this entry was created.</summary>
|
|
/// <value>The time, in coordinated universal time (UTC), this entry was created.</value>
|
|
public DateTime CreationTimeUtc { get; set; }
|
|
|
|
#endregion // CreationTimeUtc
|
|
|
|
#region EaSize
|
|
|
|
/// <summary>The size of the extended attributes for the file.</summary>
|
|
public int ExtendedAttributesSize { get; set; }
|
|
|
|
#endregion // EaSize
|
|
|
|
#region EndOfFile
|
|
|
|
/// <summary>The absolute new end-of-file position as a byte offset from the start of the file to the end of the file.
|
|
/// Because this value is zero-based, it actually refers to the first free byte in the file. In other words, <b>EndOfFile</b> is the offset to
|
|
/// the byte that immediately follows the last valid byte in the file.
|
|
/// </summary>
|
|
public long EndOfFile { get; set; }
|
|
|
|
#endregion // EndOfFile
|
|
|
|
#region FileAttributes
|
|
|
|
/// <summary>The file attributes.</summary>
|
|
public FileAttributes FileAttributes { get; set; }
|
|
|
|
#endregion FileAttributes
|
|
|
|
#region FileId
|
|
|
|
/// <summary>The file ID.</summary>
|
|
public long FileId { get; set; }
|
|
|
|
#endregion // FileId
|
|
|
|
#region FileIndex
|
|
|
|
/// <summary>The byte offset of the file within the parent directory. This member is undefined for file systems, such as NTFS,
|
|
/// in which the position of a file within the parent directory is not fixed and can be changed at any time to maintain sort order.
|
|
/// </summary>
|
|
public long FileIndex { get; set; }
|
|
|
|
#endregion // FileIndex
|
|
|
|
#region FileName
|
|
|
|
/// <summary>The name of the file.</summary>
|
|
public string FileName { get; set; }
|
|
|
|
#endregion // FileName
|
|
|
|
#region LastAccessTime
|
|
|
|
/// <summary>Gets the time this entry was last accessed.</summary>
|
|
/// <value>The time this entry was last accessed.</value>
|
|
public DateTime LastAccessTime
|
|
{
|
|
get { return LastAccessTimeUtc.ToLocalTime(); }
|
|
}
|
|
|
|
#endregion // LastAccessTime
|
|
|
|
#region LastAccessTimeUtc
|
|
|
|
/// <summary>Gets the time, in coordinated universal time (UTC), this entry was last accessed.</summary>
|
|
/// <value>The time, in coordinated universal time (UTC), this entry was last accessed.</value>
|
|
public DateTime LastAccessTimeUtc { get; set; }
|
|
|
|
#endregion // LastAccessTimeUtc
|
|
|
|
#region LastWriteTime
|
|
|
|
/// <summary>Gets the time this entry was last modified.</summary>
|
|
/// <value>The time this entry was last modified.</value>
|
|
public DateTime LastWriteTime
|
|
{
|
|
get { return LastWriteTimeUtc.ToLocalTime(); }
|
|
}
|
|
|
|
#endregion // LastWriteTime
|
|
|
|
#region LastWriteTimeUtc
|
|
|
|
/// <summary>Gets the time, in coordinated universal time (UTC), this entry was last modified.</summary>
|
|
/// <value>The time, in coordinated universal time (UTC), this entry was last modified.</value>
|
|
public DateTime LastWriteTimeUtc { get; set; }
|
|
|
|
#endregion // LastWriteTimeUtc
|
|
|
|
#region ShortName
|
|
|
|
/// <summary>The short 8.3 file naming convention (for example, FILENAME.TXT) name of the file.</summary>
|
|
public string ShortName { get; set; }
|
|
|
|
#endregion // ShortName
|
|
|
|
#endregion // Properties
|
|
}
|
|
}
|
|
|