/* 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.Security; namespace Alphaleonis.Win32.Filesystem { partial class Directory { #region .NET /// Retrieves the parent directory of the specified path, including both absolute and relative paths. /// The path for which to retrieve the parent directory. /// The parent directory, or if is the root directory, including the root of a UNC server or share name. [SecurityCritical] public static DirectoryInfo GetParent(string path) { return GetParentCore(null, path, PathFormat.RelativePath); } /// [AlphaFS] Retrieves the parent directory of the specified path, including both absolute and relative paths. /// The parent directory, or if is the root directory, including the root of a UNC server or share name. /// The path for which to retrieve the parent directory. /// Indicates the format of the path parameter(s). [SecurityCritical] public static DirectoryInfo GetParent(string path, PathFormat pathFormat) { return GetParentCore(null, path, pathFormat); } #endregion // .NET /// [AlphaFS] Retrieves the parent directory of the specified path, including both absolute and relative paths. /// The parent directory, or if is the root directory, including the root of a UNC server or share name. /// The transaction. /// The path for which to retrieve the parent directory. [SecurityCritical] public static DirectoryInfo GetParentTransacted(KernelTransaction transaction, string path) { return GetParentCore(transaction, path, PathFormat.RelativePath); } /// Retrieves the parent directory of the specified path, including both absolute and relative paths. /// The parent directory, or if is the root directory, including the root of a UNC server or share name. /// The transaction. /// The path for which to retrieve the parent directory. /// Indicates the format of the path parameter(s). [SecurityCritical] public static DirectoryInfo GetParentTransacted(KernelTransaction transaction, string path, PathFormat pathFormat) { return GetParentCore(transaction, path, pathFormat); } #region Internal Methods /// Retrieves the parent directory of the specified path, including both absolute and relative paths. /// The parent directory, or if is the root directory, including the root of a UNC server or share name. /// The transaction. /// The path for which to retrieve the parent directory. /// Indicates the format of the path parameter(s). [SecurityCritical] internal static DirectoryInfo GetParentCore(KernelTransaction transaction, string path, PathFormat pathFormat) { string pathLp = Path.GetExtendedLengthPathCore(transaction, path, pathFormat, GetFullPathOptions.CheckInvalidPathChars); pathLp = Path.GetRegularPathCore(pathLp, GetFullPathOptions.None, false); string dirName = Path.GetDirectoryName(pathLp, false); return Utils.IsNullOrWhiteSpace(dirName) ? null : new DirectoryInfo(transaction, dirName, PathFormat.RelativePath); } #endregion // Internal Methods } }