GoLang unlink

is this article helpful? yes | no
GoLang replacement for PHP's unlink [edit | history]
func Unlink(filename string) error {
	return os.Remove(filename)
}

PHP unlink

PHP original manual for unlink [ show | php.net ]