MCPcopy Create free account
hub / github.com/openai/openai-agents-python / mkdir

Method mkdir

tests/sandbox/test_extract.py:75–83  ·  view source on GitHub ↗
(
        self,
        path: Path | str,
        *,
        parents: bool = False,
        user: object = None,
    )

Source from the content-addressed store, hash-verified

73 return
74
75 async def mkdir(
76 self,
77 path: Path | str,
78 *,
79 parents: bool = False,
80 user: object = None,
81 ) -> None:
82 _ = user
83 self.normalize_path(path).mkdir(parents=parents, exist_ok=True)
84
85 async def ls(
86 self,

Calls 1

normalize_pathMethod · 0.45

Tested by

no test coverage detected