/* 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.IO; using System.Runtime.InteropServices; namespace Alphaleonis.Win32.Filesystem { internal static partial class NativeMethods { /// Contains the basic information for a file. Used for file handles. /// /// Specifying -1 for , , or /// indicates that operations on the current handle should not affect the given field. /// (I.e, specifying -1 for will leave the unaffected by writes performed /// on the current handle.) /// [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] internal struct FILE_BASIC_INFO { /// The time the file was created in format, /// which is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC). /// public FILETIME CreationTime; /// The time the file was last accessed in format. public FILETIME LastAccessTime; /// The time the file was last written to in format. public FILETIME LastWriteTime; /// The time the file was changed in format. public FILETIME ChangeTime; /// The file attributes. /// If this is set to 0 in a structure passed to SetFileInformationByHandle then none of the attributes are changed. public FileAttributes FileAttributes; } } }