【自用-nim语言】批量删除文件夹里的.png图片命令行(语言版本2.2.2)
# 遍历文件夹,删除所有.png文件 import std/os import std/strutils var args = commandLineParams() var dir = args[0] for filePath in walkDirRec(dir,yieldFilter={pcFile}): if filePath.endsWith(".png"): removeFile(filePath)
https://gitee.com/h128/png_cleaner
浙公网安备 33010602011771号