Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何功能可以删除特定扩展名或模式的目录中的文件?
例如,删除 nvmdir 目录中的所有 bbram 扩展文件。
os.remove(nvmdir .. "\\*.bbram")
没有内置功能。您可以使用外壳,如
os.execute("rm " .. nvmdir .. "/*.bbram")