/* 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.Security; namespace Alphaleonis.Win32.Filesystem { partial class Directory { /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTime.ToUniversalTime(), lastAccessTime.ToUniversalTime(), lastWriteTime.ToUniversalTime(), modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, PathFormat.RelativePath); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, false, pathFormat); } /// [AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified directory, at once. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, creationTimeUtc, lastAccessTimeUtc, lastWriteTimeUtc, modifyReparsePoint, pathFormat); } #endregion // Transactional } }