golang中判斷是檔案還是目錄的方法:
package main import ( "os" "fmt" ) func main() { file := "/root/data/testFile.txt" fmt.Printf("%s is file: %v\n", file, IsFile(file)) } // IsFile checks whether the path is a file, // it returns false when it's a directory or does not exist. func IsFile(f string) bool { fi, e := os.Stat(f) if e != nil { return false } return !fi.IsDir() }
os.path.isdir()用來判斷物件是否為一個目錄。如果指定檔案為目錄,則傳回 true,否則,傳回 false。
更多golang知識請關注PHP中文網golang教學欄位。
以上是golang判斷是否目錄的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!