/* 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.IO; using System.Security; using System.Security.AccessControl; namespace Alphaleonis.Win32.Filesystem { public static partial class File { #region SetCreationTime /// Sets the date and time the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetCreationTime(string path, DateTime creationTime) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), null, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTime(string path, DateTime creationTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), null, null, false, pathFormat); } /// [AlphaFS] Sets the date and time the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTime(string path, DateTime creationTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), null, null, modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets the date and time the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetCreationTimeTransacted(KernelTransaction transaction, string path, DateTime creationTime) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), null, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeTransacted(KernelTransaction transaction, string path, DateTime creationTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), null, null, false, pathFormat); } /// [AlphaFS] Sets the date and time the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeTransacted(KernelTransaction transaction, string path, DateTime creationTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), null, null, modifyReparsePoint, pathFormat); } #endregion // Transacted #endregion // SetCreationTime #region SetCreationTimeUtc /// Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetCreationTimeUtc(string path, DateTime creationTimeUtc) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, null, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeUtc(string path, DateTime creationTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, null, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeUtc(string path, DateTime creationTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, null, null, modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetCreationTimeUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, null, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, null, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the file was created. /// The transaction. /// The file for which to set the creation date and time information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetCreationTimeUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, null, null, modifyReparsePoint, pathFormat); } #endregion // Transacted #endregion // SetCreationTimeUtc #region SetLastAccessTime /// Sets the date and time that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// [SecurityCritical] public static void SetLastAccessTime(string path, DateTime lastAccessTime) { SetFsoDateTimeCore(false, null, path, null, lastAccessTime.ToUniversalTime(), null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTime(string path, DateTime lastAccessTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, lastAccessTime.ToUniversalTime(), null, false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTime(string path, DateTime lastAccessTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, lastAccessTime.ToUniversalTime(), null, modifyReparsePoint, pathFormat); } #region Transaction /// [AlphaFS] Sets the date and time that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// [SecurityCritical] public static void SetLastAccessTimeTransacted(KernelTransaction transaction, string path, DateTime lastAccessTime) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTime.ToUniversalTime(), null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeTransacted(KernelTransaction transaction, string path, DateTime lastAccessTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTime.ToUniversalTime(), null, false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeTransacted(KernelTransaction transaction, string path, DateTime lastAccessTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTime.ToUniversalTime(), null, modifyReparsePoint, pathFormat); } #endregion // Transaction #endregion // SetLastAccessTime #region SetLastAccessTimeUtc /// Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// [SecurityCritical] public static void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc) { SetFsoDateTimeCore(false, null, path, null, lastAccessTimeUtc, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, lastAccessTimeUtc, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, lastAccessTimeUtc, null, modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// [SecurityCritical] public static void SetLastAccessTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastAccessTimeUtc) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTimeUtc, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastAccessTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTimeUtc, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. /// The transaction. /// The file for which to set the access date and time information. /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastAccessTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastAccessTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, lastAccessTimeUtc, null, modifyReparsePoint, pathFormat); } #endregion // Transacted #endregion // SetLastAccessTimeUtc #region SetLastWriteTime /// Sets the date and time that the specified file was last written to. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetLastWriteTime(string path, DateTime lastWriteTime) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time that the specified file was last written to. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTime(string path, DateTime lastWriteTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified file was last written to. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTime(string path, DateTime lastWriteTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets the date and time that the specified file was last written to. /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetLastWriteTimeTransacted(KernelTransaction transaction, string path, DateTime lastWriteTime) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time that the specified file was last written to. /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeTransacted(KernelTransaction transaction, string path, DateTime lastWriteTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified file was last written to. /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeTransacted(KernelTransaction transaction, string path, DateTime lastWriteTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } #endregion // Transacted #endregion // SetLastWriteTime #region SetLastWriteTimeUtc /// Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTimeUtc, false, pathFormat); } /// /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, null, null, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } #region Transactional /// /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetLastWriteTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastWriteTimeUtc) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastWriteTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTimeUtc, false, pathFormat); } /// /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. /// /// The transaction. /// The file for which to set the date and time information. /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetLastWriteTimeUtcTransacted(KernelTransaction transaction, string path, DateTime lastWriteTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, null, null, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } #endregion // Transacted #endregion // SetLastWriteTimeUtc #region SetTimestamps /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestamps(string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetTimestamps(string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestamps(string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsTransacted(KernelTransaction transaction, string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// [SecurityCritical] public static void SetTimestampsTransacted(KernelTransaction transaction, string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in local time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in local time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in local time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsTransacted(KernelTransaction transaction, string path, DateTime creationTime, DateTime lastAccessTime, DateTime lastWriteTime, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } #endregion // SetTimestamps #region SetTimestampsUtc /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsUtc(string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetTimestampsUtc(string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsUtc(string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// [SecurityCritical] public static void SetTimestampsUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once. /// The transaction. /// The file for which to set the dates and times information. /// /// A containing the value to set for the creation date and time of . This value /// is expressed in UTC time. /// /// /// A containing the value to set for the last access date and time of . This /// value is expressed in UTC time. /// /// /// A containing the value to set for the last write date and time of . This value /// is expressed in UTC time. /// /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void SetTimestampsUtcTransacted(KernelTransaction transaction, string path, DateTime creationTimeUtc, DateTime lastAccessTimeUtc, DateTime lastWriteTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { SetFsoDateTimeCore(false, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } #endregion // SetTimestampsUtc #region Internal Methods /// Set the date and time, in coordinated universal time (UTC), that the file or directory was created and/or last accessed and/or written to. /// /// /// Specifies that is a file or directory. /// The transaction. /// The file or directory for which to set the date and time information. /// A containing the value to set for the creation date and time of . This value is expressed in UTC time. /// A containing the value to set for the last access date and time of . This value is expressed in UTC time. /// A containing the value to set for the last write date and time of . This value is expressed in UTC time. /// If , the date and time information will apply to the reparse point (symlink or junction) and not the file or directory linked to. No effect if does not refer to a reparse point. /// Indicates the format of the path parameter(s). [SecurityCritical] internal static void SetFsoDateTimeCore(bool isFolder, KernelTransaction transaction, string path, DateTime? creationTimeUtc, DateTime? lastAccessTimeUtc, DateTime? lastWriteTimeUtc, bool modifyReparsePoint, PathFormat pathFormat) { // Because we already check here, use false for CreateFileCore() to prevent another check. if (pathFormat == PathFormat.RelativePath) Path.CheckSupportedPathFormat(path, false, false); var attributes = isFolder ? ExtendedFileAttributes.BackupSemantics : ExtendedFileAttributes.Normal; if (modifyReparsePoint) attributes |= ExtendedFileAttributes.OpenReparsePoint; using (var creationTime = SafeGlobalMemoryBufferHandle.FromLong(creationTimeUtc.HasValue ? creationTimeUtc.Value.ToFileTimeUtc() : (long?)null)) using (var lastAccessTime = SafeGlobalMemoryBufferHandle.FromLong(lastAccessTimeUtc.HasValue ? lastAccessTimeUtc.Value.ToFileTimeUtc() : (long?)null)) using (var lastWriteTime = SafeGlobalMemoryBufferHandle.FromLong(lastWriteTimeUtc.HasValue ? lastWriteTimeUtc.Value.ToFileTimeUtc() : (long?)null)) using (var safeHandle = CreateFileCore(transaction, path, attributes, null, FileMode.Open, FileSystemRights.WriteAttributes, FileShare.Delete | FileShare.Write, false, pathFormat)) if (!NativeMethods.SetFileTime(safeHandle, creationTime, lastAccessTime, lastWriteTime)) NativeError.ThrowException(path); } #endregion // Internal Methods } }