Deletes the file at the specified path.
function delfile(path: string): ()
path - Path to the file.
path
writefile("file5.txt", "Hello") print(isfile("file5.txt")) -- Output: true delfile("file5.txt") print(isfile("file5.txt")) -- Output: false
Last updated 2 months ago