_=os.MkdirAll(p,os.ModePerm)// want "os and ioutil dir and file writing functions are not permissions-safe, use shared/fileutil"
someFile:=filepath.Join(p,"some.txt")
_=ioutil.WriteFile(someFile,[]byte("hello"),os.ModePerm)// want "os and ioutil dir and file writing functions are not permissions-safe, use shared/fileutil"