17 lines
256 B
Plaintext
17 lines
256 B
Plaintext
:sig
|
|
void file_unlink(String file_name)
|
|
|
|
:params
|
|
file_name : name of the file
|
|
|
|
:see
|
|
>sys
|
|
|
|
:content
|
|
Deletes the file identified by `file_name`.
|
|
|
|
## Related Concepts
|
|
|
|
- PHP: `unlink()`
|
|
- JavaScript / Node.js: Node `fs.unlinkSync()` or `fs.promises.unlink()`
|