用Batch删除当前目录下小于指定大小文件

    技术2025-03-06  37

    @echo off for %a in (*.*) do ( if %~za lss 1024 del /a /f %%a)

    最新回复(0)