GetDrive
C语言函数
GetDrive是一个C语言函数。
C语言函数
函数简介
函数名称:_getdrive
函数功能:返回当前的磁盘驱动器,1代表A盘,2代表B盘,依次类推
函数原型:int _getdrive( void );
所属库名:direct.h
程序示例
#include
#include
#include
#include
int main( void )
{
int ch, drive, curdrive;
static char path[_MAX_PATH];
// Save current drive.
curdrive = _getdrive();
// If we can switch to the drive, it exists.
for( drive = 1; drive <= 26; drive++ )
{
if( !_chdrive( drive ) )
{
if( _getdcwd( drive, path, _MAX_PATH ) != NULL )
putchar( ' ' );
}
}
// Restore original drive.
_chdrive( curdrive );
}
VB中方法
描述返回一个与指定路径中的驱动器相对应的 Drive 对象。语法object.GetDrive drivespecGetDrive 方法语法有如下几部分:部分描述Object必需的。始终是一个 FileSystemObject 的名字。Drivespec必需的。drivespec参数可以是一个驱动器字符(c)、一个驱动器字符加一个冒号(c:)、一个驱动器字符加冒号和路径分隔符GetDriveName(GetAbsolutePathName(Path))
参考资料
最新修订时间:2024-08-18 20:18
目录
概述
C语言函数
参考资料