8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

storage_path メソッドでstorageディレクトリのフルパスを求める

Last updated at Posted at 2020-03-18

概要

ファイルの入出力が必要なシステムを実装していると、メモリ不足対策などで一時保存用処理でフルパスが必要な場合があります。

そのときに役に立つのがstorage_path メソッドです。
実行するとLaravelディレクトリ直下の storage ディレクトリのフルパスを返します。
文字列を引数にすると、渡された文字列をサブディレクトリとして、連結したものを返します。

実行例

// /path/to/laravel-route/storage を出力
echo storage_path();


// /path/to/laravel-route/storage/tmp_data を出力
echo storage_path('tmp_data');


// tmp_data ディレクトリが未作成の場合、mkdirメソッドで権限のゆるいディレクトリを作成する
if (!file_exists($tmp_file_dir = storage_path('tmp_data'))) {
    mkdir($tmp_file_dir, 0777, true);
}

storage_path メソッドで取得したフルパスは、SplFileObjectfopen()mkdir() 等ファイルの操作系を利用する際に使えます。

8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?