2012-03-27 23:13:14 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package os
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MkdirAll creates a directory named path,
|
|
|
|
// along with any necessary parents, and returns nil,
|
|
|
|
// or else returns an error.
|
|
|
|
// The permission bits perm are used for all
|
|
|
|
// directories that MkdirAll creates.
|
|
|
|
// If path is already a directory, MkdirAll does nothing
|
|
|
|
// and returns nil.
|
|
|
|
func MkdirAll(path string, perm FileMode) error {
|
2015-08-28 15:33:40 +00:00
|
|
|
// Fast path: if we can tell whether path is a directory or file, stop with success or error.
|
2012-03-27 23:13:14 +00:00
|
|
|
dir, err := Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
if dir.IsDir() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &PathError{"mkdir", path, syscall.ENOTDIR}
|
|
|
|
}
|
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
// Slow path: make sure parent exists and then call Mkdir for path.
|
2012-03-27 23:13:14 +00:00
|
|
|
i := len(path)
|
|
|
|
for i > 0 && IsPathSeparator(path[i-1]) { // Skip trailing path separator.
|
|
|
|
i--
|
|
|
|
}
|
|
|
|
|
|
|
|
j := i
|
|
|
|
for j > 0 && !IsPathSeparator(path[j-1]) { // Scan backward over element.
|
|
|
|
j--
|
|
|
|
}
|
|
|
|
|
|
|
|
if j > 1 {
|
|
|
|
// Create parent
|
|
|
|
err = MkdirAll(path[0:j-1], perm)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
// Parent now exists; invoke Mkdir and use its result.
|
2012-03-27 23:13:14 +00:00
|
|
|
err = Mkdir(path, perm)
|
|
|
|
if err != nil {
|
|
|
|
// Handle arguments like "foo/." by
|
|
|
|
// double-checking that directory doesn't exist.
|
|
|
|
dir, err1 := Lstat(path)
|
|
|
|
if err1 == nil && dir.IsDir() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveAll removes path and any children it contains.
|
|
|
|
// It removes everything it can but returns the first error
|
2017-10-07 00:16:47 +00:00
|
|
|
// it encounters. If the path does not exist, RemoveAll
|
2012-03-27 23:13:14 +00:00
|
|
|
// returns nil (no error).
|
|
|
|
func RemoveAll(path string) error {
|
|
|
|
// Simple case: if Remove works, we're done.
|
|
|
|
err := Remove(path)
|
2015-08-28 15:33:40 +00:00
|
|
|
if err == nil || IsNotExist(err) {
|
2012-03-27 23:13:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, is this a directory we need to recurse into?
|
|
|
|
dir, serr := Lstat(path)
|
|
|
|
if serr != nil {
|
|
|
|
if serr, ok := serr.(*PathError); ok && (IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return serr
|
|
|
|
}
|
|
|
|
if !dir.IsDir() {
|
|
|
|
// Not a directory; return the error from Remove.
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Directory.
|
|
|
|
fd, err := Open(path)
|
|
|
|
if err != nil {
|
2015-08-28 15:33:40 +00:00
|
|
|
if IsNotExist(err) {
|
|
|
|
// Race. It was deleted between the Lstat and Open.
|
|
|
|
// Return nil per RemoveAll's docs.
|
|
|
|
return nil
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove contents & return first error.
|
|
|
|
err = nil
|
|
|
|
for {
|
|
|
|
names, err1 := fd.Readdirnames(100)
|
|
|
|
for _, name := range names {
|
|
|
|
err1 := RemoveAll(path + string(PathSeparator) + name)
|
|
|
|
if err == nil {
|
|
|
|
err = err1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err1 == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// If Readdirnames returned an error, use it.
|
|
|
|
if err == nil {
|
|
|
|
err = err1
|
|
|
|
}
|
|
|
|
if len(names) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close directory, because windows won't remove opened directory.
|
|
|
|
fd.Close()
|
|
|
|
|
|
|
|
// Remove directory.
|
|
|
|
err1 := Remove(path)
|
2015-08-28 15:33:40 +00:00
|
|
|
if err1 == nil || IsNotExist(err1) {
|
|
|
|
return nil
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
if err == nil {
|
|
|
|
err = err1
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|