unlink
![]() |
![]() |
![]() |
![]() |
unlink
Call the unlink() function to delete a file
Syntax:
unlink file
Runs on:
Neutrino
Options:
- file
- The pathname of an existing file.
Description:
The unlink utility is a command-line interface to the unlink() function:
(void)unlink( file );
Only the superuser may use the unlink utility. Only the superuser may unlink a directory, and then only if the filesystem allows it (see _PC_LINK_DIR in the description of pathconf() in the Library Reference).
Exit status:
- 0
- Successful completion.
- > 0
- An error occurred.
Caveats:
The unlink command can be very dangerous to your filesystem; you should probably use rm or rmdir instead.
See also:
pathconf() in the Library Reference
![]() |
![]() |
![]() |
![]() |

![[Previous]](../prev.gif)
![[Contents]](../contents.gif)
![[Index]](../keyword_index.gif)
![[Next]](../next.gif)
