記事の内容
概要
ファイル操作(読み込み、書き込み、削除)を簡潔に行えるメソッドを提供します。
exists
指定したパスにファイルが存在するか確認します。
if (File::exists('path/to/file.txt')) {
// ファイルが存在する
}
get
指定したファイルの内容を取得します。
$content = File::get('path/to/file.txt');
echo $content;
put
ファイルにデータを書き込みます。
File::put('path/to/file.txt', 'This is a sample content.');
append
ファイルにデータを書き込みます。
File::append('path/to/file.txt', 'This is appended content.');
delete
指定したファイルを削除します。
File::delete('path/to/file.txt');
copy
指定したファイルを新しい場所にコピーします。
File::copy('path/to/original.txt', 'path/to/copy.txt');
move
指定したファイルを新しい場所に移動します。
File::move('path/to/file.txt', 'path/to/new/file.txt');
size
指定したファイルのサイズをバイト単位で取得します。
$size = File::size('path/to/file.txt');
echo $size . ' bytes';
lastModified
指定したファイルの最終更新時刻を取得します。
$lastModified = File::lastModified('path/to/file.txt');
echo date('Y-m-d H:i:s', $lastModified);