/* 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.Globalization; using System.IO; using System.Linq; using System.Security; namespace Alphaleonis.Win32.Filesystem { partial class Directory { /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. [SecurityCritical] public static void DeleteEmptySubdirectories(string path, bool recursive) { DeleteEmptySubdirectoriesCore(null, null, path, recursive, false, true, PathFormat.RelativePath); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void DeleteEmptySubdirectories(string path, bool recursive, PathFormat pathFormat) { DeleteEmptySubdirectoriesCore(null, null, path, recursive, false, true, pathFormat); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// overrides read only of empty directories. [SecurityCritical] public static void DeleteEmptySubdirectories(string path, bool recursive, bool ignoreReadOnly) { DeleteEmptySubdirectoriesCore(null, null, path, recursive, ignoreReadOnly, true, PathFormat.RelativePath); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// overrides read only of empty directories. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void DeleteEmptySubdirectories(string path, bool recursive, bool ignoreReadOnly, PathFormat pathFormat) { DeleteEmptySubdirectoriesCore(null, null, path, recursive, ignoreReadOnly, true, pathFormat); } #region Transactional /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The transaction. /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. [SecurityCritical] public static void DeleteEmptySubdirectoriesTransacted(KernelTransaction transaction, string path, bool recursive) { DeleteEmptySubdirectoriesCore(null, transaction, path, recursive, false, true, PathFormat.RelativePath); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The transaction. /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void DeleteEmptySubdirectoriesTransacted(KernelTransaction transaction, string path, bool recursive, PathFormat pathFormat) { DeleteEmptySubdirectoriesCore(null, transaction, path, recursive, false, true, pathFormat); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The transaction. /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// overrides read only of empty directories. [SecurityCritical] public static void DeleteEmptySubdirectoriesTransacted(KernelTransaction transaction, string path, bool recursive, bool ignoreReadOnly) { DeleteEmptySubdirectoriesCore(null, transaction, path, recursive, ignoreReadOnly, true, PathFormat.RelativePath); } /// [AlphaFS] Deletes empty subdirectories from the specified directory. /// /// /// /// The transaction. /// The name of the directory to remove empty subdirectories from. /// deletes empty subdirectories from this directory and its subdirectories. /// overrides read only of empty directories. /// Indicates the format of the path parameter(s). [SecurityCritical] public static void DeleteEmptySubdirectoriesTransacted(KernelTransaction transaction, string path, bool recursive, bool ignoreReadOnly, PathFormat pathFormat) { DeleteEmptySubdirectoriesCore(null, transaction, path, recursive, ignoreReadOnly, true, pathFormat); } #endregion // Transactional #region Internal Methods /// Delete empty subdirectories from the specified directory. /// /// /// /// /// /// /// A FileSystemEntryInfo instance. Use either or , not both. /// The transaction. /// The name of the directory to remove empty subdirectories from. Use either or , not both. /// deletes empty subdirectories from this directory and its subdirectories. /// overrides read only of empty directories. /// When indicates the method is called externally. /// Indicates the format of the path parameter(s). [SecurityCritical] internal static void DeleteEmptySubdirectoriesCore(FileSystemEntryInfo fileSystemEntryInfo, KernelTransaction transaction, string path, bool recursive, bool ignoreReadOnly, bool initialize, PathFormat pathFormat) { #region Setup if (pathFormat == PathFormat.RelativePath) Path.CheckSupportedPathFormat(path, true, true); if (fileSystemEntryInfo == null) { if (!File.ExistsCore(true, transaction, path, pathFormat)) NativeError.ThrowException(Win32Errors.ERROR_PATH_NOT_FOUND, path); fileSystemEntryInfo = File.GetFileSystemEntryInfoCore(true, transaction, Path.GetExtendedLengthPathCore(transaction, path, pathFormat, GetFullPathOptions.TrimEnd | GetFullPathOptions.RemoveTrailingDirectorySeparator | GetFullPathOptions.FullCheck) , false, pathFormat); } if (fileSystemEntryInfo == null) throw new ArgumentNullException("path"); string pathLp = fileSystemEntryInfo.LongFullPath; #endregion // Setup // Ensure path is a directory. if (!fileSystemEntryInfo.IsDirectory) throw new IOException(string.Format(CultureInfo.CurrentCulture, Resources.Target_Directory_Is_A_File, pathLp)); var dirEnumOptions = DirectoryEnumerationOptions.Folders; if (recursive) dirEnumOptions |= DirectoryEnumerationOptions.Recursive; foreach (var fsei in EnumerateFileSystemEntryInfosCore(transaction, pathLp, Path.WildcardStarMatchAll, dirEnumOptions, PathFormat.LongFullPath)) DeleteEmptySubdirectoriesCore(fsei, transaction, null, recursive, ignoreReadOnly, false, PathFormat.LongFullPath); if (!EnumerateFileSystemEntryInfosCore(transaction, pathLp, Path.WildcardStarMatchAll, DirectoryEnumerationOptions.FilesAndFolders, PathFormat.LongFullPath).Any()) { // Prevent deleting path itself. if (!initialize) DeleteDirectoryCore(fileSystemEntryInfo, transaction, null, false, ignoreReadOnly, true, true, PathFormat.LongFullPath); } } #endregion // Internal Methods } }