_getdrive

获取当前磁盘驱动器。

重要

此 API 不能在运行时的窗口执行的应用程序。有关更多信息,请参见 CRT 函数不支持与 /ZW

int _getdrive( void );

返回值

返回当前值 (默认) 驱动程序 (1=A,2=B,等等)。 无错误返回。

要求

实例

必需的标头

_getdrive

<direct.h>

有关更多兼容性信息,请参见中介绍的 兼容性

示例

// crt_getdrive.c
// compile with: /c
// Illustrates drive functions including:
//    _getdrive       _chdrive        _getdcwd
//

#include <stdio.h>
#include <direct.h>
#include <stdlib.h>
#include <ctype.h>

int main( void )
{
   int ch, drive, curdrive;
   static char path[_MAX_PATH];

   // Save current drive.
   curdrive = _getdrive();

   printf( "Available drives are:\n" );

   // If we can switch to the drive, it exists.
   for( drive = 1; drive <= 26; drive++ )
   {
      if( !_chdrive( drive ) )
      {
         printf( "%c:", drive + 'A' - 1 );
         if( _getdcwd( drive, path, _MAX_PATH ) != NULL )
            printf( " (Current directory is %s)", path );
         putchar( '\n' );
      }
   }

   // Restore original drive.
   _chdrive( curdrive );
}
  

.NET Framework 等效项

System::Environment::CurrentDirectory

请参见

参考

内容控件

_chdrive

_getcwd, _wgetcwd

_getdcwd, _wgetdcwd