MkdirAll makes directory with necessary parent directories in path
(path string, perm os.FileMode)
| 52 | |
| 53 | // MkdirAll makes directory with necessary parent directories in path |
| 54 | func (OSFileSystem) MkdirAll(path string, perm os.FileMode) error { |
| 55 | return os.MkdirAll(path, perm) |
| 56 | } |
| 57 | |
| 58 | // OpenFileForWrite opens a file for write |
| 59 | func (OSFileSystem) OpenFileForWrite(name string, flag int, perm os.FileMode) (io.WriteCloser, error) { |