This PR adds Unlink op, remove_file and remove_dir functions and tests. They are implemented for unix only.
remove_dir_all is not implemented because getdents64 is not supported by io_uring and there's currently no way to list nested files and directories with io_uring.
This PR adds
Unlink
op,remove_file
andremove_dir
functions and tests. They are implemented for unix only.remove_dir_all
is not implemented becausegetdents64
is not supported by io_uring and there's currently no way to list nested files and directories with io_uring.