在許多程式設計場景中,有必要驗證檔案系統中是否存在特定檔案或目錄。在 Go 中,判斷檔案或目錄是否存在可以毫不費力地實現。
為了實現這一點,Go 提供了os.Stat() 函數,它返回有關文件或目錄的重要信息,包括其存在性。透過使用 os.Stat(),開發者可以辨別指定的路徑是否對應於實際的檔案或目錄。
以下Go 程式碼示範如何使用os.Stat()檢查檔案或目錄是否存在:
import ( "fmt" "os" ) func main() { filePath := "./conf/app.ini" exists, err := os.Stat(filePath) if err != nil { if os.IsNotExist(err) { fmt.Printf("File or directory %s does not exist.\n", filePath) } else { fmt.Printf("Error checking existence: %v\n", err) } } else { fmt.Printf("File or directory %s exists.\n", filePath) } }
在此程式碼範例中,os. Stat() 傳回一個FileInfo 對象,該物件保存與檔案相關的各種資訊資訊。如果filePath指定的檔案或目錄存在,則exists變數設為true,並傳回nil。如果檔案或目錄不存在,os.IsNotExist()傳回true,並且exists設定為false。在此過程中遇到的任何其他錯誤都儲存在 err.
以上是如何在 Go 中檢查檔案或目錄是否存在?的詳細內容。更多資訊請關注PHP中文網其他相關文章!