Golang判斷檔案是否存在及遞迴建立檔案夾

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

一、判斷檔案或檔案夾是否存在

golang 判斷檔案或者檔案夾是否存在可以通過os.stat() 方法和os.IsExist() 方法來判斷:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
func isExist(path string)(bool){
_, err := os.Stat(path)
if err != nil{
if os.IsExist(err){
return true
}
if os.IsNotExist(err){
return false
}
fmt.Println(err)
return false
}
return true
}

二、遞迴建立檔案夾

遞迴檔案夾用到os.MkdirAll() 方法:

1
func MkdirAll(path string, perm FileMode) error

第一個參數是路徑,第二個是許可權。如果檔案夾不存在就建立,存在則不做任何操作。

三、測試代碼

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package main
import (
"os"
"fmt"
)
//判斷檔案或檔案夾是否存在
func isExist(path string)(bool){
_, err := os.Stat(path)
if err != nil{
if os.IsExist(err){
return true
}
if os.IsNotExist(err){
return false
}
fmt.Println(err)
return false
}
return true
}
func main(){
//遞迴建立檔案夾
err := os.MkdirAll("./test/1/2", os.ModePerm)
if err != nil{
fmt.Println(err)
return
}
dirs := []string{"./test/1", "./test/2", "./test/1.txt"}
for _, v := range dirs{
if isExist(v){
fmt.Printf("%s is exist!", v)
}else{
fmt.Printf("%s is not exist!", v)
}
}
}

在終端中執行:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ma@ma:/data/code/go/src/file_exist$ tree
.
└── file_exist.go
0 directories, 1 file
ma@ma:/data/code/go/src/file_exist$ go run file_exist.go # 運行程式
./test/1 is exist!
./test/2 is not exist!
./test/1.txt is not exist!
ma@ma:/data/code/go/src/file_exist$ tree
.
├── file_exist.go
└── test
└── 1
└── 2
3 directories, 1 file
ma@ma:/data/code/go/src/file_exist$ touch test/1.txt # 建立1.txt
ma@ma:/data/code/go/src/file_exist$ go run file_exist.go
./test/1 is exist!
./test/2 is not exist!
./test/1.txt is exist! # 1.txt存在
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.