Codeception / Codeception/module-filesystem

Feature request: \Codeception\Module\Filesystem::writeToFile create a directory recursively.

オープン
#3 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
PHP
スター
20
フォーク
7
PR マージ指標
30日以内にマージされた PR はありません

説明

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

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。