тип диска
От: oncer  
Дата: 16.06.05 14:50
Оценка:
Как определить тип диска ?
Есть путь. Нужно определить находится файл на
-- жестком диске
-- CD-ром (DVD-ром)
-- Сетевой диск
Как это можно сделать?

16.06.05 20:43: Перенесено из 'C/C++'
Re: тип диска
От: eaa Украина  
Дата: 16.06.05 14:56
Оценка:
Здравствуйте, oncer, Вы писали:

O>Как определить тип диска ?

O>Есть путь. Нужно определить находится файл на
O>-- жестком диске
O>-- CD-ром (DVD-ром)
O>-- Сетевой диск
O>Как это можно сделать?

С++ такое делать не умеет
если под виндой то GetDriveType но это нужно спрашивать в форуме WinAPI, если под другой платформой то соответсвенно в другом форуме...
Re: тип диска
От: Rodji  
Дата: 16.06.05 16:04
Оценка: +2
Здравствуйте, oncer,
Думаю комментарии здесь не нужны...

The GetDriveType function determines whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network drive.

UINT GetDriveType(
LPCTSTR lpRootPathName // в формате "x:\\"
);

Parameters

lpRootPathName

Points to a null-terminated string that specifies the root directory of the disk to return information about. If lpRootPathName is NULL, the function uses the root of the current directory.


Return Values

The return value specifies the type of drive. It can be one of the following values:

Value Meaning
0 The drive type cannot be determined.
1 The root directory does not exist.
DRIVE_REMOVABLE The drive can be removed from the drive.
DRIVE_FIXED The disk cannot be removed from the drive.
DRIVE_REMOTE The drive is a remote (network) drive.
DRIVE_CDROM The drive is a CD-ROM drive.
DRIVE_RAMDISK The drive is a RAM disk.
(c)Microsoft SDK
Re[2]: тип диска
От: Valery A. Boronin Россия linkedin.com/in/boronin
Дата: 16.06.05 19:54
Оценка: +1
Здравствуйте, Rodji, Вы писали:

R>Думаю комментарии здесь не нужны...

угу, достаточно было написать так GetDriveType
тут есть удобный тег msdn
... << RSDN@Home 1.1.4 beta 7 rev. 447>>
Valery A. Boronin, RSDN Team, linkedin.com\in\boronin
R&D Mgmt & Security. AppSec & SDL. Data Protection and Systems Programming. FDE, DLP, Incident Management. Windows Filesystems and Drivers.
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.