mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15253] Add create dir method
PHPBB3-15253
This commit is contained in:
parent
b8483c582d
commit
c18c40aaa5
1 changed files with 9 additions and 0 deletions
|
@ -77,4 +77,13 @@ interface adapter_interface
|
||||||
* When the file cannot be copied
|
* When the file cannot be copied
|
||||||
*/
|
*/
|
||||||
public function copy($path_orig, $path_dest);
|
public function copy($path_orig, $path_dest);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a directory recursively.
|
||||||
|
*
|
||||||
|
* @param string $path The directory path
|
||||||
|
*
|
||||||
|
* @throws \phpbb\storage\exception\exception On any directory creation failure
|
||||||
|
*/
|
||||||
|
public function create_dir($path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue