- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for mkdirAllIgnorePerm (0.09 seconds)
-
cmd/config-dir.go
) // Get - returns current directory. func (dir *ConfigDir) Get() string { return dir.path } // Attempts to create all directories, ignores any permission denied errors. func mkdirAllIgnorePerm(path string) error { err := os.MkdirAll(path, 0o700) if err != nil { // It is possible in kubernetes like deployments this directory // is already mounted and is not writable, ignore any write errors.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Jan 02 17:15:06 GMT 2022 - 3K bytes - Click Count (0)