删除 C 盘空文件夹--递归删除

# Language: Powershell
# Style: TypeScript# 文件名:
# "文件(夹):删除空文件夹.ps1"function Remove-EmptyDirectories {param ([string]$Path)# 获取所有目录,把子目录排列在父目录前面。# 删除所有子文件(夹)后,可判断父目录为空,进而再删除父目录。$directories = Get-ChildItem $Path -Recurse -Directory | Sort-Object -Property FullName -Descendingforeach ($dir in $directories) {# 检查目录是否为空(排除 desktop.ini)if (-not (Get-ChildItem $dir.FullName -Recurse) -and -not (Test-Path (Join-Path $dir.FullName "desktop.ini"))) {# 检查目录属性,排除具有系统、只读和重分析点属性的目录$attributes = (Get-Item $dir.FullName).Attributesif (-not ($attributes -band [System.IO.FileAttributes]::System) -and-not ($attributes -band [System.IO.FileAttributes]::ReadOnly) -and-not ($attributes -band [System.IO.FileAttributes]::ReparsePoint)) {Remove-Item $dir.FullName -Force -Verbose}}}
}function main {if ($args.Count -gt 0) {Remove-EmptyDirectories $($args[0])} else {Write-Host "No arguments provided."}
}main $args# Usage:
# PowerShell.exe -File "文件(夹):删除空文件夹.ps1" "C:\"<## 无回溯,只删除了叶子空目录
Get-ChildItem "C:\" -Recurse | Where-Object { $_.PSIsContainer -and @(Get-ChildItem $_.FullName -Recurse).Count -eq 0 } | Remove-Item
#>
:: Language: cmd
:: Style: Cobol:: 使用方法: "你命名的脚本.bat" "C:\":DelEmptyDir
@	echo off&pushd "%TEMP%"&setlocal EnableDelayedExpansion@if not exist "%~1\" exit /b 0REM 设置要清理的路径set "targetPath=%~1"REM 遍历所有目录for /f "delims=" %%D in ('dir "%targetPath%" /s/b/ad ^| sort /r') do (set "dirPath=%%D"REM 检查目录是否为空set isEmpty=1dir /a/b "!dirPath!" | findstr .* >nul && set isEmpty=0REM 检查是否包含 desktop.ini 文件if exist "!dirPath!\desktop.ini" set isEmpty=0REM 检查目录属性for %%A in ("!dirPath!") do (set "attr=%%~aA"echo !attr! | find "R" >nul && set isReadOnly=1 || set isReadOnly=0echo !attr! | find "S" >nul && set isSystem=1 || set isSystem=0echo !attr! | find "L" >nul && set isReparsePoint=1 || set isReparsePoint=0)REM 如果目录为空且不包含特定属性或文件,则删除if "!isEmpty!"=="1" if "!isReadOnly!"=="0" if "!isSystem!"=="0" if "!isReparsePoint!"=="0" (echo Deleting empty directory: "!dirPath!"rd "!dirPath!" >nul 2>&1))
@	endlocal & popd
@exit /b 0

不想麻烦,本想网上找一个简单脚了事,没想太多照搬的,而且还错的离谱。只好自己搞个。

# 使用 Powershell 语言


function Remove-EmptyDirectories {
    param (
        [string]$Path
    )
    # 获取所有目录,把子目录排列在父目录前面。
    # 删除所有子文件(夹)后,可判断父目录为空,进而再删除父目录。
    $directories = Get-ChildItem $Path -Recurse -Directory | Sort-Object -Property FullName -Descending
    foreach ($dir in $directories) {
        # 检查目录是否为空(排除 desktop.ini)
        if (-not (Get-ChildItem $dir.FullName -Recurse) -and 
            -not (Test-Path (Join-Path $dir.FullName "desktop.ini"))) {
            # 检查目录属性,排除具有系统、只读和重分析点属性的目录
            $attributes = (Get-Item $dir.FullName).Attributes
            if (-not ($attributes -band [System.IO.FileAttributes]::System) -and
                -not ($attributes -band [System.IO.FileAttributes]::ReadOnly) -and
                -not ($attributes -band [System.IO.FileAttributes]::ReparsePoint)) {
                    Remove-Item $dir.FullName -Force -Verbose
            }
        }
    }
}

function main {
    if ($args.Count -gt 0) {
            Remove-EmptyDirectories $($args[0])
    } else {
            Write-Host "No arguments provided."
    }
}

main $args

# PowerShell.exe -File "文件(夹):删除空文件夹.ps1" "C:\"

<#
 # 无回溯,只删除了叶子空目录
Get-ChildItem "C:\" -Recurse | Where-Object { $_.PSIsContainer -and @(Get-ChildItem $_.FullName -Recurse).Count -eq 0 } | Remove-Item
#>


:: ---------------------------------------------------------------------------------------------------------------------------

使用 CMD 命令:


:DelEmptyDir
@    echo off&pushd "%TEMP%"&setlocal EnableDelayedExpansion
    @if not exist "%~1\" exit /b 0
    REM 设置要清理的路径
    set "targetPath=%~1"
    REM 遍历所有目录
    for /f "delims=" %%D in ('dir "%targetPath%" /s/b/ad ^| sort /r') do (
        set "dirPath=%%D"
        REM 检查目录是否为空
        set isEmpty=1
        dir /a/b "!dirPath!" | findstr .* >nul && set isEmpty=0
        REM 检查是否包含 desktop.ini 文件
        if exist "!dirPath!\desktop.ini" set isEmpty=0
        REM 检查目录属性
        for %%A in ("!dirPath!") do (
            set "attr=%%~aA"
            echo !attr! | find "R" >nul && set isReadOnly=1 || set isReadOnly=0
            echo !attr! | find "S" >nul && set isSystem=1 || set isSystem=0
            echo !attr! | find "L" >nul && set isReparsePoint=1 || set isReparsePoint=0
        )
        REM 如果目录为空且不包含特定属性或文件,则删除
        if "!isEmpty!"=="1" if "!isReadOnly!"=="0" if "!isSystem!"=="0" if "!isReparsePoint!"=="0" (
            echo Deleting empty directory: "!dirPath!"
            rd "!dirPath!" >nul 2>&1
        )
    )
@    endlocal & popd
@exit /b 0
 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/64458.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

为SSH2协议服务器的用户设置密钥

目录 私钥的创建1. 在服务器上直接生成2. 如果需要配置免密登录3. 查看生成的密钥 导出私钥至SSH用户获取sudo权限 新的一台服务器类型是SSH2&#xff1a;这表示服务器支持SSH&#xff08;Secure Shell&#xff09;协议的第二个版本。SSH是一个网络协议&#xff0c;用于加密方式…

level2逐笔委托查询接口

沪深逐笔委托队列查询 前置步骤 分配数据库服务器 查询模板 以下是沪深委托队列查询的请求模板&#xff1a; http://<数据库服务器>/sql?modeorder_book&code<股票代码>&offset<offset>&token<token>查询参数说明 参数名类型说明mo…

微软开源GraphRAG的使用教程(最全,非常详细)

GraphRAG的介绍 目前微软已经开源了GraphRAG的完整项目代码。对于某一些LLM的下游任务则可以使用GraphRAG去增强自己业务的RAG的表现。项目给出了两种使用方式&#xff1a; 在打包好的项目状态下运行&#xff0c;可进行尝试使用。在源码基础上运行&#xff0c;适合为了下游任…

文献研读|基于像素语义层面图像重建的AI生成图像检测

前言&#xff1a;本篇文章主要对基于重建的AI生成图像检测的四篇相关工作进行介绍&#xff0c;分别为基于像素层面重建的检测方法 DIRE 和 Aeroblade&#xff0c;以及基于语义层面重建的检测方法 SimGIR 和 Zerofake&#xff1b;并对相应方法进行比较。 相关文章&#xff1a;论…

VScode MAC按任意键关闭终端 想要访问桌面文件

说明 最近配置MAC上CPP的运行环境&#xff0c;在安装必要的CPP插件后&#xff0c;配置launch和task等json文件后&#xff0c;点击运行三角形&#xff0c;每次都会跳出main想要访问桌面上的文件。并且输出也是在调试控制台&#xff0c;非常逆天。 尝试 尝试1:尽管我尝试将ta…

7.日常算法

1. NC140 排序 题目来源 要求使用堆进行排序 class Solution { public: void adjustDown(vector<int>& arr, int root, int n){int parent root;int chiled root * 2 1;while (chiled < n){if (chiled 1 < n && arr[chiled 1] > arr[chi…

Linux Shell 脚本编程基础知识篇

ℹ️大家好&#xff0c;我是练小杰&#xff0c;从本文是Linux shell脚本编程的基础知识内容&#xff0c;后续我会不断补充~~ 更多Linux 相关内容请点击&#x1f449;“Linux专栏”~ 假面驾驭&#xff0c;时王&#xff0c;假面骑士时王~~ 文章目录 什么是 Linux Shell主要功能…

QT绘制同心扇形

void ChartForm::paintEvent(QPaintEvent *) {QPainter painter(this);painter.setRenderHint(QPainter::Antialiasing);// 设置抗锯齿painter.save();// 设置无边框&#xff08;不需要设置QPen&#xff0c;因为默认是不绘制边框的&#xff09;QPen pen(Qt::NoPen);// QPen pen…

【0369】Postgres内核 checkpoint record 与 expectedTLEs 校验 ( 12 )

上一篇: 文章目录 1. checkpoint record 校验1.1 预期 timeline1.2 timeline 判断1.3 checkPoint ThisTimeLineID2. 最小 recovery point3. 初始化 LastRec1. checkpoint record 校验 如果 checkpoint record 的位置不在请求 timeline 历史中的预期 timeline 上,则无法继续…

TL3568/TL3562更改主机名,在Kernel用menuconfig失效

前言 最近在玩RK3562开发板&#xff0c;想改串口调试时看到的主机名&#xff0c;开发板的主机名默认是RK3562-Tronlong&#xff0c;如图&#xff1a; 按照之前玩T113开发版&#xff0c;在Kernel通过make menuconfig&#xff0c;可以改。但是在这个RK3562&#xff0c;改了后&…

【PLL】ISSCC 2024 Tutorial: Calibration Techniques in PLLs

1. 数字辅助模拟电路 为什么要辅助&#xff0c;或替换模拟电路&#xff1f; 利用CMOS管子尺寸缩小&#xff0c;降低功耗 和 减小面积校正模拟电路的 非线性行为 和 失配 数字辅助的好处&#xff1a; 简化模拟电路设计提高能源效率&#xff0c;提高准确度 2. 锁相环基础 2.1 概…

STM32-笔记5-按键点灯(中断方法)

1、复制03-流水灯项目&#xff0c;重命名06-按键点灯&#xff08;中断法&#xff09; 在\Drivers\BSP目录下创建一个文件夹exti&#xff0c;在该文件夹下&#xff0c;创建两个文件exti.c和exti.h文件&#xff0c;并且把这两个文件加载到项目中&#xff0c;打开项目工程文件 加载…

在M系列芯片的Mac上使用Uniapp开发的依赖安装指南

在M系列芯片的Mac上使用Uniapp开发的依赖安装指南 在基于M系列芯片&#xff08;例如M3、M4&#xff09;的Mac上进行Uniapp开发时&#xff0c;使用esbuild和rollup等依赖包时需要注意处理不同架构的支持。具体问题出现在darwin-arm64&#xff08;ARM架构&#xff09;和darwin-x…

Mvc、Springmvc框架

一.Mvc&#xff1a; 1.概念&#xff1a; MVC它是一种设计理念。把程序按照指定的结构来划分: Model模型 、View视图 、Controller控制层&#xff1b; 结构图&#xff1a; 二.Springmvc: 1.概念&#xff1a; springmvc框架它是spring框架的一个分支。它是按照mvc架构思想设计…

spring使用rabbitmq当rabbitmq集群节点挂掉 spring rabbitmq怎么保证高可用,rabbitmq网络怎么重新连接

##spring rabbitmq代码示例 Controller代码 import com.alibaba.fastjson.JSONObject; import com.newland.mi.config.RabbitDMMQConfig; import org.springframework.amqp.core.Message; import org.springframework.amqp.core.MessageProperties; import org.springframewo…

前端面试问题集合

0 HTML5相关 websocket WebSocket 使用ws或wss协议&#xff0c;Websocket是一个持久化的协议&#xff0c;相对于HTTP这种非持久的协议来说。WebSocket API最伟大之处在于服务器和客户端可以在给定的时间范围内的任意时刻&#xff0c;相互推送信息。WebSocket并不限于以Ajax(或X…

WebGPU、WebGL 和 OpenGL/Vulkan对比分析

WebGPU、WebGL 和 OpenGL/Vulkan 都是用于图形渲染和计算的图形API&#xff0c;但它们的设计理念、功能和适用场景有所不同。以下是它们的总结和对比分析&#xff1a; 1. WebGPU WebGPU 是一个新的、现代化的图形和计算API&#xff0c;设计目的是为Web平台提供更接近硬件的性…

RabbitMQ如何构建集群?

大家好&#xff0c;我是锋哥。今天分享关于【RabbitMQ如何构建集群&#xff1f;】面试题。希望对大家有帮助&#xff1b; RabbitMQ如何构建集群&#xff1f; 1000道 互联网大厂Java工程师 精选面试题-Java资源分享网 在RabbitMQ中&#xff0c;集群&#xff08;Cluster&#x…

3大Excel免费功能

推荐几个免费excel图表绘制工具 Power Map Power Map是Excel的内置功能 Power Map可在Windows用户的Excel 2013或者Excel 2016或者Office 365中使用,如下图, 看案例 动态地图1 动态地图2

概率论得学习和整理31: 连续型随机变量的概率本质是求面积,均匀分布等

目录 1 连续性随机变量 2 连续性随机变量和 离散型随机变量&#xff0c;分布的区别 3 不要混淆概念 4 均匀分布的相关 4.1 定义 4.2 例子 1 连续性随机变量 连续性随机变量最大的特点&#xff0c;单个点上的概率0多了一个分布函数&#xff0c;因为从1维变2维了&#xff…