Skip to content

os.remove

starkos edited this page Apr 10, 2021 · 5 revisions

⚠️ We have a new website! Visit now for the most update to date documentation.
       This wiki is no longer being maintained.


Remove files from the file system.

os.remove("path", ...)

Parameters

path is the file system path to be removed. Wildcard matches are supported, see os.matchfiles for examples.

Return Value

True if successful, otherwise nil and an error message.

Availability

Premake 5.0 or later.

See Also

Examples

local ok, err = os.remove{"**.bak", "**.log"}
if not ok then
	error(err)
end
Clone this wiki locally