Moving os.MkdirAll() inside atomic for auto parent directory creates

This commit is contained in:
Harshavardhana
2015-07-07 12:35:50 -07:00
parent 5fc377ae57
commit 11b893804c
2 changed files with 7 additions and 8 deletions

View File

@@ -58,8 +58,13 @@ func (f *File) CloseAndPurge() error {
return nil
}
// FileCreate creates a new file at filePath for atomic writes
// FileCreate creates a new file at filePath for atomic writes, it also creates parent directories if they don't exist
func FileCreate(filePath string) (*File, error) {
// if parent directories do not exist, ioutil.TempFile doesn't create them
// handle such a case with os.MkdirAll()
if err := os.MkdirAll(filepath.Dir(filePath), 0700); err != nil {
return nil, iodine.New(err, nil)
}
f, err := ioutil.TempFile(filepath.Dir(filePath), filepath.Base(filePath))
if err != nil {
return nil, iodine.New(err, nil)