amphp / file

An abstraction layer and non-blocking file access solution that keeps your application responsive.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for recursive mkdir

kelunik opened this issue · comments

There should be support for the recursive option like for mkdir.

mkdir() internally just loops stat()'s and creates the directory if it doesn't exist yet. We'd have to do the same here with libuv/eio.

Fine, but we should have it.

agree. our api should have similar features as one is used to from native php equivalents