英语单词查询
unlink
「unlink」的意思
vt. 解开……的环节;拆开; vi. 分开;分离
vt.解开...的环节
「unlink」的用法
unlink删除或取消链接 - PHP程序员
「unlink」的例句
The unlink function is used to delete a file.
unlink函数用于删除一个文件。
You can use unlink to remove a symbolic link.
你可以使用unlink来删除一个符号链接。
unlink is a powerful function that should be used carefully.
unlink是一个强大的函数,应该谨慎使用。
If the file does not exist, unlink will not cause an error.
如果文件不存在,unlink不会导致错误。
Be sure to check if the file exists before using unlink.
在使用unlink之前,确保文件存在。
unlink can be used to remove directories as well, but it must be done recursively.
unlink也可以用来删除目录,但必须递归地进行。
Always remember that unlink removes the file permanently.
始终记住,unlink会永久删除文件。
/path/to/file is the path of the file you want to delete.
/path/to/file是你要删除的文件的路径。
/path/to/link is the path of the symbolic link you want to remove.
/path/to/link是你要删除的符号链接的路径。
/path/to/directory is the path of the directory you want to remove recursively.
/path/to/directory是你要递归删除的目录的路径。