Skip to content

Commit 25d33d4

Browse files
Martin Larraldewillmcgugan
authored andcommitted
Fix AppFS failing to create missing dirs even on create=True (#234)
1 parent 5cf0666 commit 25d33d4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fs/opener/appfs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ def open_fs(
6767
app_fs = fs_class(appname, author=author, version=version, create=create)
6868

6969
if delim:
70+
if create:
71+
app_fs.makedir(path, recreate=True)
7072
return app_fs.opendir(path, factory=ClosingSubFS)
7173

7274
return app_fs

0 commit comments

Comments
 (0)