Can I delete a file in the FileSystem?

I can write a file in the FileSystem like so:

with output.filesystem().open(“example.txt”, “wb”) as new_file:
new_file.write(“example”)

Is it possible to DELETE a file in the output filesystem within an incremental transform?