Udostępnij za pośrednictwem


_getdrive

Pobiera bieżący napęd dysku.

Ważna uwagaWażne

Tego API nie można używać w aplikacjach korzystających ze środowiska wykonawczego Windows.Aby uzyskać więcej informacji, zobacz Funkcje CRT nieobsługiwane przez /ZW.

int _getdrive( void );

Wartość zwracana

Zwraca bieżący dysk (ustawienie domyślne) (1 = A, 2 = B i tak dalej).Nie będzie zwrotu błędu.

Wymagania

Procedura

Wymagany nagłówek

_getdrive

<direct.h>

Aby uzyskać więcej informacji na temat zgodności – zobacz: Zgodność.

Przykład

// 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 );
}
  

Odpowiednik w programie .NET Framework

Katalog systemu bieżących środowisk

Zobacz też

Informacje

Kontrola katalogu

_chdrive

_getcwd, _wgetcwd

_getdcwd, _wgetdcwd