mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Fix filemanager.MkdirAll
This commit is contained in:
parent
c501a58ae7
commit
2196f193ac
1 changed files with 4 additions and 0 deletions
|
@ -118,6 +118,10 @@ func (m *defaultManager) Mkdir(path string, perm os.FileMode) error {
|
|||
|
||||
func (m *defaultManager) MkdirAll(path string, perm os.FileMode) error {
|
||||
path = m.BasePath(path)
|
||||
return m.mkdirAll(path, perm)
|
||||
}
|
||||
|
||||
func (m *defaultManager) mkdirAll(path string, perm os.FileMode) error {
|
||||
dir, err := os.Stat(path)
|
||||
if err == nil {
|
||||
if dir.IsDir() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue