Codeception / Codeception/module-filesystem
Feature request: \Codeception\Module\Filesystem::writeToFile create a directory recursively.
- Lingua principale
- PHP
- Stelle
- 20
- Fork
- 7
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Scenario:
I want to create a file inside a folder:
`$I->writeToFile('/var/www/foo/foo.php', '');`
This will fail because the folder `foo` does not exist.
Now I have to create the folder recursively and keep track of it for deletion.
```
public function writeToFile($filename, $contents)
{
file_put_contents($filename, $contents);
}
```
This issue is a feature request to make that method more robust, using perhaps Symfony Filesystem to recursively create the directory. Eg: https://symfony.com/doc/current/components/filesystem.html#mkdir
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.