File "rename.php"
Full path: /www/hm-genkai/setting/rename.php
File size: 696 B
MIME-type: text/x-php
Charset: utf-8
<?php
// ディレクトリパス
$dir = '/www/hm-genkai/data/';
// ファイルリスト取得
foreach(glob($dir . '*') as $filepath) {
// 1件ずつファイルを処理
if(is_file($filepath)) {
// ファイル名取得
$filename = basename($filepath);
if(strstr($filename, '03-036.csv'))
{
//2022-01-25-03-
print $filename ."\n";
// 新しいファイル名生成
// ここでは例として拡張子を.txtから.phpに変更する
$newFilename = str_replace('03-036.csv', '04-036.csv', $filename);
// ファイル名をリネーム処理
rename($filepath, $dir . $newFilename);
}
}
}
?>