Window删除指定后缀文件
时间: 2023-04-10 10:03:44 浏览: 87
易语言删除指定路径指定后缀文件
您可以使用以下代码来删除指定后缀名的文件:
```lua
local suffix = ".txt" --指定后缀名
local path = "C:/Users/username/Desktop/" --指定路径
for file in io.popen("dir \""..path.."\" /b"):lines() do
if file:sub(-#suffix) == suffix then
os.remove(path..file)
end
end
```
这段代码会在指定路径下查找所有后缀名为 .txt 的文件,并将其删除。
阅读全文