System_WinDrives::getDriveList() -- すべてのドライブのパスを配列で取得する
説明
すべてのドライブのパス (例えば A:\
や C:\) を配列で返します。
API が使用できない場合は、ドライブ一覧を推測して返します。詳細なデータ
(ドライブの型や名前など) を取得するには
getDrivesInformation() を使用します。
例
例 63-1myFunction() の使用法 <?php
require_once 'System/WinDrives.php';
$swd = new System_WinDrives();
$arPaths = $swd->getDriveList();
foreach ($arPaths as $strPath) {
echo $strPath . "\r\n"; // 結果は "A:\" や "C:\" のようになります
}
?> |
出力:
|