檔案存放空間
簡介
多虧了 Flysystem,Laravel 提供了強大的檔案系統抽象介面。Flysystem 是 Frank de Jonge 提供的一個 PHP 套件。Laravel 整合 Flysystem 來提供多個簡單的 Driver,可處理本機檔案系統、SFTP、Amazon S3 等。甚至,在本機開發環境與正式伺服器間交換使用各個不同的儲存空間非常地簡單,且每個儲存系統都有相同的 API。
設定
Laravel 的檔案系統設定檔位在 config/filesystems.php
。在這個檔案中,我們可以設定所有的檔案系統「Disk」。各個 Disk 都代表了一個特定的儲存空間 Driver 與儲存位置。該設定檔內已包含了各個支援 Driver 的範例設定,讓你能修改這些設定來反映出儲存空間偏好與認證方式。
local
Driver 負責處理保存在執行該 Laravel 專案之本機伺服器上的檔案。而 s3
Driver 則用來將檔案寫入 Amazon 的 S3 雲端儲存服務。
可以隨意設定多個 Disk,甚至也可以設定多個使用相同 Driver 的 Disk。
「Local」Driver
使用 local
Driver 時,所有的檔案操作都相對於 filesystems
設定檔中定義的 root
根目錄。預設情況下,這個值設為 storage/app
目錄。因此,下列方法會寫入 storage/app/example.txt
:
1use Illuminate\Support\Facades\Storage;23Storage::disk('local')->put('example.txt', 'Contents');
1use Illuminate\Support\Facades\Storage;23Storage::disk('local')->put('example.txt', 'Contents');
「Public」Disk
專案中的 filesystems
設定檔內有個 public
Disk,public
Disk 是用來處理要提供公開存取的檔案。預設情況下,public
Disk 使用 local
Driver,並將檔案保存在 storage/app/public
。
為了這些檔案可在網頁上存取,請建立一個 public/storage
到 storage/app/public
的符號連結。使用這個資料夾慣例來把所有可公開存取的檔案放到同一個資料夾內,就你在使用如 Envoyer 這類不停機部署系統時也能輕鬆的在多個部署間共用這個資料夾。
若要建立符號連結,可使用 storage:link
Artisan 指令:
1php artisan storage:link
1php artisan storage:link
保存檔案並建立好符號連結後,就可以使用 asset
輔助函式來建立該檔案的 URL:
1echo asset('storage/file.txt');
1echo asset('storage/file.txt');
也可以在 filesystems
設定檔中設定其他符號連結。在執行 storage:link
指令時,會建立設定中的各個符號連結:
1'links' => [2 public_path('storage') => storage_path('app/public'),3 public_path('images') => storage_path('app/images'),4],
1'links' => [2 public_path('storage') => storage_path('app/public'),3 public_path('images') => storage_path('app/images'),4],
Driver 的前置需求
Composer 套件
使用 S3 或 SFTP Driver 前,需要使用 Composer 套件管理員安裝適當的套件:
- Amazon S3:
composer require --with-all-dependencies league/flysystem-aws-s3-v3 "^1.0"
- SFTP:
composer require league/flysystem-sftp "~1.0"
此外,也可選擇安裝 Cached Adapter 來增加效能:
- CachedAdapter:
composer require league/flysystem-cached-adapter "~1.0"
S3 Driver 設定
S3 Driver 的設定資訊保存在 config/filesystems.php
設定檔內。這個檔案中包含了用於 S3 Driver 的範例設定。可以自行將陣列改為你的 S3 設定與認證資訊。為了方便起見,這些環境變數的名稱都符合 AWS CLI 使用的命名慣例。
FTP Driver 設定
Laravel 的 Flysystem 整合可以完美配合 FTP。不過,Laravel 的預設 filesystems.php
設定檔中並未包含 FTP 的範例設定。若有需要設定 FTP 檔案系統,可使用下列範例設定:
1'ftp' => [2 'driver' => 'ftp',3 'host' => env('FTP_HOST'),4 'username' => env('FTP_USERNAME'),5 'password' => env('FTP_PASSWORD'),67 // Optional FTP Settings...8 // 'port' => env('FTP_PORT', 21),9 // 'root' => env('FTP_ROOT'),10 // 'passive' => true,11 // 'ssl' => true,12 // 'timeout' => 30,13],
1'ftp' => [2 'driver' => 'ftp',3 'host' => env('FTP_HOST'),4 'username' => env('FTP_USERNAME'),5 'password' => env('FTP_PASSWORD'),67 // Optional FTP Settings...8 // 'port' => env('FTP_PORT', 21),9 // 'root' => env('FTP_ROOT'),10 // 'passive' => true,11 // 'ssl' => true,12 // 'timeout' => 30,13],
SFTP Driver 設定
Laravel 的 Flysystem 整合可以完美配合 SFTP。不過,Laravel 的預設 filesystems.php
設定檔中並未包含 SFTP 的範例設定。若有需要設定 SFTP 檔案系統,可使用下列範例設定:
1'sftp' => [2 'driver' => 'sftp',3 'host' => env('SFTP_HOST'),45 // Settings for basic authentication...6 'username' => env('SFTP_USERNAME'),7 'password' => env('SFTP_PASSWORD'),89 // Settings for SSH key based authentication with encryption password...10 'privateKey' => env('SFTP_PRIVATE_KEY'),11 'password' => env('SFTP_PASSWORD'),1213 // Optional SFTP Settings...14 // 'port' => env('SFTP_PORT', 22),15 // 'root' => env('SFTP_ROOT'),16 // 'timeout' => 30,17],
1'sftp' => [2 'driver' => 'sftp',3 'host' => env('SFTP_HOST'),45 // Settings for basic authentication...6 'username' => env('SFTP_USERNAME'),7 'password' => env('SFTP_PASSWORD'),89 // Settings for SSH key based authentication with encryption password...10 'privateKey' => env('SFTP_PRIVATE_KEY'),11 'password' => env('SFTP_PASSWORD'),1213 // Optional SFTP Settings...14 // 'port' => env('SFTP_PORT', 22),15 // 'root' => env('SFTP_ROOT'),16 // 'timeout' => 30,17],
相容於 Amazon S3 的檔案系統
預設情況下,專案的 filesystems
設定檔中已包含了一個 s3
Disk 設定。除了以該 Disk 來使用 Amazon S3 外,還可以通過這個 Disk 來使用相容於 S3 的檔案存放服務,如 MinIO 或 DigitalOcean Spaces。
一般來說,為 Disk 設定要使用服務的認證資訊後,就只需要更改 url
設定選項即可。這個選項值通常是以 AWS_ENGPOINT
環境變數定義的:
1'endpoint' => env('AWS_ENDPOINT', 'https://minio:9000'),
1'endpoint' => env('AWS_ENDPOINT', 'https://minio:9000'),
快取
若要在給定 Disk 上啟用快取,只需要在該 Disk 的設定選項中加上 cache
指示詞即可。cache
選項應為一個快取選項陣列,其中包含:disk
名稱、expire
單位為秒的有效期間、prefix
快取前置詞等:
1's3' => [2 'driver' => 's3',34 // Other Disk Options...56 'cache' => [7 'store' => 'memcached',8 'expire' => 600,9 'prefix' => 'cache-prefix',10 ],11],
1's3' => [2 'driver' => 's3',34 // Other Disk Options...56 'cache' => [7 'store' => 'memcached',8 'expire' => 600,9 'prefix' => 'cache-prefix',10 ],11],
取得 Disk 實體
可通過 Storage
Facade 來與設定好的任一 Disk 互動。舉例來說,可以使用 Facade 上的 put
方法來將使用者圖片保存在預設 Disk 內。若在呼叫方法時沒有在 Storage
Facade 上先呼叫 disk
方法,則這個方法呼叫會自動被傳到預設的 Disk 上:
1use Illuminate\Support\Facades\Storage;23Storage::put('avatars/1', $content);
1use Illuminate\Support\Facades\Storage;23Storage::put('avatars/1', $content);
若你的專案使用多個 Disk,可使用 Storage
Facade 上的 disk
方法來在特定 Disk 上處理檔案:
1Storage::disk('s3')->put('avatars/1', $content);
1Storage::disk('s3')->put('avatars/1', $content);
隨需提供的 Disk
有時候,我們會想在不實際將設定寫入 filesystems
設定檔的情況下,在執行階段直接通過給定的一組設定來建立 Disk。若要在執行階段建立 Disk,請將一組設定陣列傳給 Storage
Facade 的 build
方法:
1use Illuminate\Support\Facades\Storage;23$disk = Storage::build([4 'driver' => 'local',5 'root' => '/path/to/root',6]);78$disk->put('image.jpg', $content);
1use Illuminate\Support\Facades\Storage;23$disk = Storage::build([4 'driver' => 'local',5 'root' => '/path/to/root',6]);78$disk->put('image.jpg', $content);
取得檔案
get
方法可用來取得檔案內容。該方法會回傳檔案的原始字串內容。請記得,所有檔案路徑都是相對於該 Disk 所指定的「root」根目錄:
1$contents = Storage::get('file.jpg');
1$contents = Storage::get('file.jpg');
exists
方法可用來判斷某個檔案是否存在於 Disk 上:
1if (Storage::disk('s3')->exists('file.jpg')) {2 // ...3}
1if (Storage::disk('s3')->exists('file.jpg')) {2 // ...3}
可使用 missing
方法來判斷 Disk 上是否不存在這個檔案:
1if (Storage::disk('s3')->missing('file.jpg')) {2 // ...3}
1if (Storage::disk('s3')->missing('file.jpg')) {2 // ...3}
下載檔案
可使用 download
方法來產生一個強制使用者在給定路徑上下載檔案的 Response。download
方法接受檔案名稱作為其第二個引數,該引數用來判斷使用者看到的檔案名稱。最後,我們可以傳入一組包含 HTTP 標頭的陣列作為該方法的第三個引數:
1return Storage::download('file.jpg');23return Storage::download('file.jpg', $name, $headers);
1return Storage::download('file.jpg');23return Storage::download('file.jpg', $name, $headers);
檔案 URL
可以使用 url
來取得給定檔案的 URL。若使用 local
Driver,通常這個網址就只是在給定路徑前方加上 /storage
然後回傳該檔案的相對 URL 而已。若使用 s3
Driver,則會回傳完整的遠端 URL:
1use Illuminate\Support\Facades\Storage;23$url = Storage::url('file.jpg');
1use Illuminate\Support\Facades\Storage;23$url = Storage::url('file.jpg');
使用 local
Driver 時,所有要供公開存取的檔案都應放在 storage/app/public
目錄內。此外,也應建立一個符號連結來將 public/storage
指向 storage/app/public
目錄。
使用 local
Driver 時,url
的回傳值未經過 URL 編碼。因此,我們建議你只使用能產生有效 URL 的檔名來保存檔案。
時效性 URL
使用 temporaryUrl
方法,就可以為儲存在 s3
Driver 上的檔案建立時效性 URL。這個方法接受一個路徑、以及一個用來指定 URL 何時過期的 DateTime
實體:
1use Illuminate\Support\Facades\Storage;23$url = Storage::temporaryUrl(4 'file.jpg', now()->addMinutes(5)5);
1use Illuminate\Support\Facades\Storage;23$url = Storage::temporaryUrl(4 'file.jpg', now()->addMinutes(5)5);
若想指定額外的 S3 Request 參數,只需要將 Request 參數陣列作為第三個引數傳給 temporaryUrl
方法即可:
1$url = Storage::temporaryUrl(2 'file.jpg',3 now()->addMinutes(5),4 [5 'ResponseContentType' => 'application/octet-stream',6 'ResponseContentDisposition' => 'attachment; filename=file2.jpg',7 ]8);
1$url = Storage::temporaryUrl(2 'file.jpg',3 now()->addMinutes(5),4 [5 'ResponseContentType' => 'application/octet-stream',6 'ResponseContentDisposition' => 'attachment; filename=file2.jpg',7 ]8);
若有需要自訂某個存放 Disk 要如何產生臨時 URL,可以使用 buildTemporaryUrlsUsing
方法。舉例來說,若有檔案儲存在不支援時效性 URL 的 Driver 上,而在某個 Controller 上我們又想讓使用者能下載這些檔案,就很適合使用這個方法。一般來說,應在某個 Service Provider 的 boot
方法內呼叫這個方法:
1<?php23namespace App\Providers;45use Illuminate\Support\Facades\Storage;6use Illuminate\Support\Facades\URL;7use Illuminate\Support\ServiceProvider;89class AppServiceProvider extends ServiceProvider10{11 /**12 * Bootstrap any application services.13 *14 * @return void15 */16 public function boot()17 {18 Storage::disk('local')->buildTemporaryUrlsUsing(function ($path, $expiration, $options) {19 return URL::temporarySignedRoute(20 'files.download',21 $expiration,22 array_merge($options, ['path' => $path])23 );24 });25 }26}
1<?php23namespace App\Providers;45use Illuminate\Support\Facades\Storage;6use Illuminate\Support\Facades\URL;7use Illuminate\Support\ServiceProvider;89class AppServiceProvider extends ServiceProvider10{11 /**12 * Bootstrap any application services.13 *14 * @return void15 */16 public function boot()17 {18 Storage::disk('local')->buildTemporaryUrlsUsing(function ($path, $expiration, $options) {19 return URL::temporarySignedRoute(20 'files.download',21 $expiration,22 array_merge($options, ['path' => $path])23 );24 });25 }26}
自訂 URL 主機
若想為 Storage
Facade 產生的 URL 預先定義主機,可在 Disk 設定陣列內加上一個 url
選項:
1'public' => [2 'driver' => 'local',3 'root' => storage_path('app/public'),4 'url' => env('APP_URL').'/storage',5 'visibility' => 'public',6],
1'public' => [2 'driver' => 'local',3 'root' => storage_path('app/public'),4 'url' => env('APP_URL').'/storage',5 'visibility' => 'public',6],
檔案詮釋資料
除了讀寫檔案外,Laravel 還提供了一些有關檔案本身的資訊。舉例來說,size
方法可用來取得單位為位元組的檔案大小:
1use Illuminate\Support\Facades\Storage;23$size = Storage::size('file.jpg');
1use Illuminate\Support\Facades\Storage;23$size = Storage::size('file.jpg');
lastModified
方法回傳以 UNIX 時戳表示的檔案最後修改時間:
1$time = Storage::lastModified('file.jpg');
1$time = Storage::lastModified('file.jpg');
檔案路徑
可以使用 path
方法來取得給定檔案的路徑。若使用 local
Driver,該方法會回傳檔案的絕對路徑。若使用 s3
Driver,該方法會回傳在 S3 Bucket 中的相對路徑:
1use Illuminate\Support\Facades\Storage;23$path = Storage::path('file.jpg');
1use Illuminate\Support\Facades\Storage;23$path = Storage::path('file.jpg');
保存檔案
可使用 put
方法來將檔案內容保存到 Disk 上。也可以傳入一個 PHP resource
給 put
方法,Laravel 會使用 Flysystem 的底層串流支援來保存檔案。請記得,所有的檔案路徑都是相對於 Disk 設定中「root」根目錄的路徑:
1use Illuminate\Support\Facades\Storage;23Storage::put('file.jpg', $contents);45Storage::put('file.jpg', $resource);
1use Illuminate\Support\Facades\Storage;23Storage::put('file.jpg', $contents);45Storage::put('file.jpg', $resource);
自動串流
使用串流將檔案到寫入存放空間可顯著降低記憶體使用。若想讓 Laravel 自動管理存放路徑中給定檔案的串流,可使用 putFile
或 putFileAs
方法。這兩個方法接受 Illuminate\Http\File
或 Illuminate\Http\UploadedFile
實體,會自動將該檔案串流到指定的路徑上:
1use Illuminate\Http\File;2use Illuminate\Support\Facades\Storage;34// Automatically generate a unique ID for filename...5$path = Storage::putFile('photos', new File('/path/to/photo'));67// Manually specify a filename...8$path = Storage::putFileAs('photos', new File('/path/to/photo'), 'photo.jpg');
1use Illuminate\Http\File;2use Illuminate\Support\Facades\Storage;34// Automatically generate a unique ID for filename...5$path = Storage::putFile('photos', new File('/path/to/photo'));67// Manually specify a filename...8$path = Storage::putFileAs('photos', new File('/path/to/photo'), 'photo.jpg');
有關 putFile
方法,還有幾點重要事項要注意。請注意,我們只有指定資料夾名稱,而未指定檔案名稱。預設情況下,putFile
會自動產生一個不重複 ID 來作為檔案名稱。檔案的副檔名會依照該檔案的 MIME 來判斷。putFile
方法會回傳該檔案包含檔名的路徑,好讓我們能保存該路徑到資料庫中。
putFile
與 putFileAs
方法也接受一個用來指定保存檔案「可見度」的引數。若你使用 Amazon S3 等雲端 Disk 來儲存檔案且想產生能公開存取的 URL,這個功能就特別實用:
1Storage::putFile('photos', new File('/path/to/photo'), 'public');
1Storage::putFile('photos', new File('/path/to/photo'), 'public');
將內容加到檔案的最前面或最後面
使用 prepend
或 append
方法,就可以讓我們將內容寫入到檔案的最前端或最後端:
1Storage::prepend('file.log', 'Prepended Text');23Storage::append('file.log', 'Appended Text');
1Storage::prepend('file.log', 'Prepended Text');23Storage::append('file.log', 'Appended Text');
複製與移動檔案
可使用 copy
方法來將現有的檔案複製到 Disk 中的新路徑。而 move
方法則可用來重新命名現有檔案或將現有檔案移至新路徑:
1Storage::copy('old/file.jpg', 'new/file.jpg');23Storage::move('old/file.jpg', 'new/file.jpg');
1Storage::copy('old/file.jpg', 'new/file.jpg');23Storage::move('old/file.jpg', 'new/file.jpg');
檔案上傳
在 Web App 中,儲存檔案最常見的例子就是保存使用者上傳的檔案了 (如:照片、文件)。在 Laravel 中,要保存上傳的檔案非常簡單,只要在上傳的檔案實體上使用 store
方法即可。呼叫 store
方法並傳入要上傳檔案要保存的位置即可:
1<?php23namespace App\Http\Controllers;45use App\Http\Controllers\Controller;6use Illuminate\Http\Request;78class UserAvatarController extends Controller9{10 /**11 * Update the avatar for the user.12 *13 * @param \Illuminate\Http\Request $request14 * @return \Illuminate\Http\Response15 */16 public function update(Request $request)17 {18 $path = $request->file('avatar')->store('avatars');1920 return $path;21 }22}
1<?php23namespace App\Http\Controllers;45use App\Http\Controllers\Controller;6use Illuminate\Http\Request;78class UserAvatarController extends Controller9{10 /**11 * Update the avatar for the user.12 *13 * @param \Illuminate\Http\Request $request14 * @return \Illuminate\Http\Response15 */16 public function update(Request $request)17 {18 $path = $request->file('avatar')->store('avatars');1920 return $path;21 }22}
在這個範例中還有幾點重要事項要注意。請注意,我們只有指定資料夾名稱,而未指定檔案名稱。預設情況下,store
會自動產生一個不重複 ID 來作為檔案名稱。檔案的副檔名會依照該檔案的 MIME 來判斷。store
方法會回傳該檔案包含檔名的路徑,好讓我們能保存該路徑到資料庫中。
也可以呼叫 Storage
Facade 上的 putFile
方法進行與上方範例相同的檔案存放操作:
1$path = Storage::putFile('avatars', $request->file('avatar'));
1$path = Storage::putFile('avatars', $request->file('avatar'));
指定檔案名稱
若不想使用自動指派給保存檔案的檔名,可使用 storeAs
方法。該方法的引數是路徑、檔名、以及 (可選的) Disk:
1$path = $request->file('avatar')->storeAs(2 'avatars', $request->user()->id3);
1$path = $request->file('avatar')->storeAs(2 'avatars', $request->user()->id3);
也可以呼叫 Storage
Facade 上的 putFileAs
方法進行與上方範例相同的檔案存放操作:
1$path = Storage::putFileAs(2 'avatars', $request->file('avatar'), $request->user()->id3);
1$path = Storage::putFileAs(2 'avatars', $request->file('avatar'), $request->user()->id3);
Unprintable and invalid unicode characters will automatically be removed from file paths. Therefore, you may wish to sanitize your file paths before passing them to Laravel's file storage methods. File paths are normalized using the League\Flysystem\Util::normalizePath
method.
指定 Disk
預設情況下,上傳檔案的 store
方法會使用預設的 Disk。若想指定另一個 Disk,請將 Disk 名稱作為第三個引數傳給 store
方法:
1$path = $request->file('avatar')->store(2 'avatars/'.$request->user()->id, 's3'3);
1$path = $request->file('avatar')->store(2 'avatars/'.$request->user()->id, 's3'3);
若使用 storeAs
方法,則可將 Disk 名稱作為第三引數傳給該方法:
1$path = $request->file('avatar')->storeAs(2 'avatars',3 $request->user()->id,4 's3'5);
1$path = $request->file('avatar')->storeAs(2 'avatars',3 $request->user()->id,4 's3'5);
其他上傳檔案的資訊
若想取得上傳檔案的原始名稱與副檔名,可使用 getClientOriginalName
與 getClientOriginalExtension
方法:
1$file = $request->file('avatar');23$name = $file->getClientOriginalName();4$extension = $file->getClientOriginalExtension();
1$file = $request->file('avatar');23$name = $file->getClientOriginalName();4$extension = $file->getClientOriginalExtension();
不過,請注意,應將 getClientOriginalName
與 getClientOriginalExtension
方法視為不安全的,因為惡意使用者可以偽造檔案名稱與副檔名。因此,建議一般還是使用 hashName
與 extension
方法來取得給定上傳檔案的檔名與副檔名:
1$file = $request->file('avatar');23$name = $file->hashName(); // Generate a unique, random name...4$extension = $file->extension(); // Determine the file's extension based on the file's MIME type...
1$file = $request->file('avatar');23$name = $file->hashName(); // Generate a unique, random name...4$extension = $file->extension(); // Determine the file's extension based on the file's MIME type...
檔案可見度
在 Laravel 的 Flysystem 整合中,「可見度」是在多個平台間抽象化的檔案權限。檔案可以被定義為 public
,或是被定義為 private
。若將檔案定義為 public
,即代表該檔案是可以被其他人正常存取的。舉例來說,若使用 S3 Driver,可以取得 public
檔案的 URL。
在使用 put
方法寫入檔案時,可以設定可見度:
1use Illuminate\Support\Facades\Storage;23Storage::put('file.jpg', $contents, 'public');
1use Illuminate\Support\Facades\Storage;23Storage::put('file.jpg', $contents, 'public');
若檔案已被保存,則可使用 getVisibility
來取得可見度,並使用 setVisibility
來設定可見度:
1$visibility = Storage::getVisibility('file.jpg');23Storage::setVisibility('file.jpg', 'public');
1$visibility = Storage::getVisibility('file.jpg');23Storage::setVisibility('file.jpg', 'public');
在處理上傳的檔案時,應使用 storePublicly
與 storePubliclyAs
方法來以 public
可見度保存上傳的檔案:
1$path = $request->file('avatar')->storePublicly('avatars', 's3');23$path = $request->file('avatar')->storePubliclyAs(4 'avatars',5 $request->user()->id,6 's3'7);
1$path = $request->file('avatar')->storePublicly('avatars', 's3');23$path = $request->file('avatar')->storePubliclyAs(4 'avatars',5 $request->user()->id,6 's3'7);
本機檔案與可見度
使用 local
Driver 時,public
可見度 對於目錄來說可翻譯為 0755
權限,而檔案則可翻譯為 0644
權限。可以在 filesystems
設定當中修改這個權限映射:
1'local' => [2 'driver' => 'local',3 'root' => storage_path('app'),4 'permissions' => [5 'file' => [6 'public' => 0644,7 'private' => 0600,8 ],9 'dir' => [10 'public' => 0755,11 'private' => 0700,12 ],13 ],14],
1'local' => [2 'driver' => 'local',3 'root' => storage_path('app'),4 'permissions' => [5 'file' => [6 'public' => 0644,7 'private' => 0600,8 ],9 'dir' => [10 'public' => 0755,11 'private' => 0700,12 ],13 ],14],
刪除檔案
delete
方法接受要刪除的單一檔案名稱,或是一組檔案名稱陣列:
1use Illuminate\Support\Facades\Storage;23Storage::delete('file.jpg');45Storage::delete(['file.jpg', 'file2.jpg']);
1use Illuminate\Support\Facades\Storage;23Storage::delete('file.jpg');45Storage::delete(['file.jpg', 'file2.jpg']);
若有需要,也可指定要在哪個 Disk 上刪除檔案:
1use Illuminate\Support\Facades\Storage;23Storage::disk('s3')->delete('path/file.jpg');
1use Illuminate\Support\Facades\Storage;23Storage::disk('s3')->delete('path/file.jpg');
目錄
取得目錄中的所有檔案
files
方法回傳一組包含給定目錄中所有檔案的陣列。若想取得包含子目錄在內的給定目錄內所有檔案的清單,可使用 allFiles
方法:
1use Illuminate\Support\Facades\Storage;23$files = Storage::files($directory);45$files = Storage::allFiles($directory);
1use Illuminate\Support\Facades\Storage;23$files = Storage::files($directory);45$files = Storage::allFiles($directory);
取得目錄內的所有目錄
directories
方法回傳一組包含給定目錄內所有目錄的陣列。此外,也可以使用 allDirectories
方法來取得給定目錄內包含子目錄的所有目錄清單:
1$directories = Storage::directories($directory);23$directories = Storage::allDirectories($directory);
1$directories = Storage::directories($directory);23$directories = Storage::allDirectories($directory);
建立目錄
makeDirectory
方法會建立給定的目錄,包含所有需要的子目錄:
1Storage::makeDirectory($directory);
1Storage::makeDirectory($directory);
刪除目錄
最後,可使用 deleteDirectory
方法來移除某個目錄與其中所有檔案:
1Storage::deleteDirectory($directory);
1Storage::deleteDirectory($directory);
自訂 Filesystem
Laravel 的 Flysystem 整合預設提供了多種可用的「Driver」。不過,Flysystem 也不是只能使用這些 Driver,還有許多其他的存放系統 Adapter 可使用。若想在 Laravel 專案中使用這些額外的 Adapter 的話,則可建立一個自訂的 Driver。
若要定義自訂檔案系統,我們首先需要一個 Flysystem Adapter。我們先來在專案中新增一個由社群維護的 Dropbox Adapter:
1composer require spatie/flysystem-dropbox
1composer require spatie/flysystem-dropbox
接著,我們可以在專案的其中一個 Service Provider 中 boot
方法內註冊這個 Driver。若要註冊 Driver,請使用 Storage
Facade 的 extend
方法:
1<?php23namespace App\Providers;45use Illuminate\Support\Facades\Storage;6use Illuminate\Support\ServiceProvider;7use League\Flysystem\Filesystem;8use Spatie\Dropbox\Client as DropboxClient;9use Spatie\FlysystemDropbox\DropboxAdapter;1011class AppServiceProvider extends ServiceProvider12{13 /**14 * Register any application services.15 *16 * @return void17 */18 public function register()19 {20 //21 }2223 /**24 * Bootstrap any application services.25 *26 * @return void27 */28 public function boot()29 {30 Storage::extend('dropbox', function ($app, $config) {31 $client = new DropboxClient(32 $config['authorization_token']33 );3435 return new Filesystem(new DropboxAdapter($client));36 });37 }38}
1<?php23namespace App\Providers;45use Illuminate\Support\Facades\Storage;6use Illuminate\Support\ServiceProvider;7use League\Flysystem\Filesystem;8use Spatie\Dropbox\Client as DropboxClient;9use Spatie\FlysystemDropbox\DropboxAdapter;1011class AppServiceProvider extends ServiceProvider12{13 /**14 * Register any application services.15 *16 * @return void17 */18 public function register()19 {20 //21 }2223 /**24 * Bootstrap any application services.25 *26 * @return void27 */28 public function boot()29 {30 Storage::extend('dropbox', function ($app, $config) {31 $client = new DropboxClient(32 $config['authorization_token']33 );3435 return new Filesystem(new DropboxAdapter($client));36 });37 }38}
傳入 extend
方法的第一個引數是 Driver 的名稱,而第二個引數則是一本接收了 $app
與 $config
變數的閉包。該閉包應回傳 League\Flysystem\Filesystem
的實體。$config
變數則包含了定義在 config/filesystems.php
中指定 Disk 的設定值。
建立並註冊好擴充的 Service Provider 後,就可以在 config/filesystems.php
設定當中使用 dropbox
Driver。