MCPcopy Create free account
hub / github.com/uber/aresdb / MkdirAll

Method MkdirAll

utils/file_system.go:54–56  ·  view source on GitHub ↗

MkdirAll makes directory with necessary parent directories in path

(path string, perm os.FileMode)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

MkdirAllMethod · 0.65

Tested by

no test coverage detected