Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17116 программистов и 1833 робота. Сейчас ищут 1664 программиста ...
System_WinDrives::getDriveType()
Вернуться к: System_WinDrives
System_WinDrives::getDriveType()
System_WinDrives::getDriveType() – Gets the type of a drive
Synopsis
require_once 'System/WinDrives.php';
int System_WinDrives::getDriveType ( string $strDrive )
Returns the type of a drive.
Value | Constant | Meaning |
---|---|---|
1 | SYSTEM_WINDRIVE_ERROR | Non-existent drive or other error |
2 | SYSTEM_WINDRIVE_REMOVABLE | Removable drive (e.g. floppy) |
3 | SYSTEM_WINDRIVE_FIXED | Harddisk |
4 | SYSTEM_WINDRIVE_REMOTE | Network share |
5 | SYSTEM_WINDRIVE_CDROM | CD-Rom or DVD |
6 | SYSTEM_WINDRIVE_RAMDISK | RAM disk |
Parameter
- string $strDrive
-
The drive that type shall be returned.
Return value
integer - the type (use the constants for comparison)
See
Вернуться к: System_WinDrives