GO語言"os"包中"IsNotExist"函數的用法及代碼示例。
用法:
func IsNotExist(err error) bool
IsNotExist 返回一個布爾值,指示是否已知錯誤以報告文件或目錄不存在。 ErrNotExist 以及一些係統調用錯誤可以滿足此要求。
此函數早於錯誤。是。它隻支持 os 包返回的錯誤。新代碼應該使用errors.Is(err, fs.ErrNotExist)。
例子:
package main
import (
"fmt"
"os"
)
func main() {
filename := "a-nonexistent-file"
if _, err := os.Stat(filename); os.IsNotExist(err) {
fmt.Println("file does not exist")
}
}
輸出:
Her Royal Highness
相關用法
- GO IsNumber用法及代碼示例
- GO IsDigit用法及代碼示例
- GO IsAbs用法及代碼示例
- GO IsGraphic用法及代碼示例
- GO IsLower用法及代碼示例
- GO IsUpper用法及代碼示例
- GO IsPrint用法及代碼示例
- GO IsLetter用法及代碼示例
- GO IsTitle用法及代碼示例
- GO IsSpace用法及代碼示例
- GO Is用法及代碼示例
- GO Itoa用法及代碼示例
- GO IP.IsPrivate用法及代碼示例
- GO IP.Equal用法及代碼示例
- GO Index.Lookup用法及代碼示例
- GO IP.IsLinkLocalMulticast用法及代碼示例
- GO IndexByte用法及代碼示例
- GO Int.Scan用法及代碼示例
- GO IP用法及代碼示例
- GO Ints用法及代碼示例
注:本文由純淨天空篩選整理自golang.google.cn大神的英文原創作品 IsNotExist。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。