/* 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 { #region .NET /// Sets the date and time that the specified directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTime.ToUniversalTime(), null, false, PathFormat.RelativePath); } /// Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTimeUtc, null, false, PathFormat.RelativePath); } #endregion // .NET /// [AlphaFS] Sets the date and time that the specified directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTime.ToUniversalTime(), null, false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTime.ToUniversalTime(), null, modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTimeUtc, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The directory 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) { File.SetFsoDateTimeCore(true, null, path, null, lastAccessTimeUtc, null, modifyReparsePoint, pathFormat); } #region Transactional /// [AlphaFS] Sets the date and time that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTime.ToUniversalTime(), null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTime.ToUniversalTime(), null, false, pathFormat); } /// [AlphaFS] Sets the date and time that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTime.ToUniversalTime(), null, modifyReparsePoint, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTimeUtc, null, false, PathFormat.RelativePath); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTimeUtc, null, false, pathFormat); } /// [AlphaFS] Sets the date and time, in coordinated universal time (UTC), that the specified directory was last accessed. /// The transaction. /// The directory 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) { File.SetFsoDateTimeCore(true, transaction, path, null, lastAccessTimeUtc, null, modifyReparsePoint, pathFormat); } #endregion // Transactional } }