/* 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; using System.Security.AccessControl; namespace Alphaleonis.Win32.Filesystem { partial class DirectoryInfo { #region .NET /// Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The specified path. This cannot be a different disk volume. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path) { return CreateSubdirectoryCore(path, null, null, false); } /// Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The specified path. This cannot be a different disk volume. /// The security to apply. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path, DirectorySecurity directorySecurity) { return CreateSubdirectoryCore(path, null, directorySecurity, false); } #endregion // .NET #region AlphaFS /// [AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// /// The specified path. This cannot be a different disk volume. /// When compresses the directory. [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path, bool compress) { return CreateSubdirectoryCore(path, null, null, compress); } /// [AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The specified path. This cannot be a different disk volume. /// The path of the directory to use as a template when creating the new directory. /// When compresses the directory. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path, string templatePath, bool compress) { return CreateSubdirectoryCore(path, templatePath, null, compress); } /// [AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The specified path. This cannot be a different disk volume. /// The security to apply. /// When compresses the directory. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path, DirectorySecurity directorySecurity, bool compress) { return CreateSubdirectoryCore(path, null, directorySecurity, compress); } /// [AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the class. /// The path of the directory to use as a template when creating the new directory. /// The specified path. This cannot be a different disk volume. /// When compresses the directory. /// The security to apply. /// The last directory specified in . /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// [SecurityCritical] public DirectoryInfo CreateSubdirectory(string path, string templatePath, DirectorySecurity directorySecurity, bool compress) { return CreateSubdirectoryCore(path, templatePath, directorySecurity, compress); } #endregion // AlphaFS #region Internal Methods /// Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the DirectoryInfo class. /// The last directory specified in path as an object. /// /// Any and all directories specified in path are created, unless some part of path is invalid. /// The path parameter specifies a directory path, not a file path. /// If the subdirectory already exists, this method does nothing. /// /// The specified path. This cannot be a different disk volume or Universal Naming Convention (UNC) name. /// The path of the directory to use as a template when creating the new directory. /// The security to apply. /// When compresses the directory. [SecurityCritical] private DirectoryInfo CreateSubdirectoryCore(string path, string templatePath, DirectorySecurity directorySecurity, bool compress) { string pathLp = Path.CombineCore(false, LongFullName, path); string templatePathLp = templatePath == null ? null : Path.GetExtendedLengthPathCore(Transaction, templatePath, PathFormat.RelativePath, GetFullPathOptions.TrimEnd | GetFullPathOptions.RemoveTrailingDirectorySeparator); if (string.Compare(LongFullName, 0, pathLp, 0, LongFullName.Length, StringComparison.OrdinalIgnoreCase) != 0) throw new ArgumentException(Resources.Invalid_Subpath, pathLp); return Directory.CreateDirectoryCore(Transaction, pathLp, templatePathLp, directorySecurity, compress, PathFormat.LongFullPath); } #endregion // Internal Methods } }