LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package os | 5 package os |
6 | |
7 | 6 |
8 // MkdirAll creates a directory named path, | 7 // MkdirAll creates a directory named path, |
9 // along with any necessary parents, and returns nil, | 8 // along with any necessary parents, and returns nil, |
10 // or else returns an error. | 9 // or else returns an error. |
11 // The permission bits perm are used for all | 10 // The permission bits perm are used for all |
12 // directories that MkdirAll creates. | 11 // directories that MkdirAll creates. |
13 // If path is already a directory, MkdirAll does nothing | 12 // If path is already a directory, MkdirAll does nothing |
14 // and returns nil. | 13 // and returns nil. |
15 func MkdirAll(path string, perm uint32) Error { | 14 func MkdirAll(path string, perm uint32) Error { |
16 // If path exists, stop with success or error. | 15 // If path exists, stop with success or error. |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Close directory, because windows won't remove opened directory. | 109 // Close directory, because windows won't remove opened directory. |
111 fd.Close() | 110 fd.Close() |
112 | 111 |
113 // Remove directory. | 112 // Remove directory. |
114 err1 := Remove(path) | 113 err1 := Remove(path) |
115 if err == nil { | 114 if err == nil { |
116 err = err1 | 115 err = err1 |
117 } | 116 } |
118 return err | 117 return err |
119 } | 118 } |
LEFT | RIGHT |