0%

Golang检查目录是否存在

使用os.stat()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main
import (
"fmt"
"os"
)

func main() {
dir := "new"
if _, err := os.Stat(dir); os.IsNotExist(err) {
fmt.Println(dir, "does not exist")
} else {
fmt.Println("The provided directory named", dir, "exists")
}
}

使用os.open()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main
import (
"fmt"
"os"
)

func main() {
dir := "go"
if _, err := os.Open(dir); os.IsNotExist(err) {
fmt.Println("The directory named", dir, "does not exist")
} else {
fmt.Println("The directory namend", dir, "exists")
}
}

使用mkdir()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main
import (
"fmt"
"os"
)

func main() {
dir := "new"
if err := os.Mkdir(dir, 0755); os.IsExist(err) {
fmt.Println("The directory named", dir, "exists")
} else {
fmt.Println("The directory named", dir, "does not exist")
}
}