共用方式為


_getmaxstdio

傳回同時開啟的檔案,在資料流 I/O 層級數目。

int _getmaxstdio( void );

傳回值

傳回代表目前允許在同時開啟的檔案數目的數字stdio層級。

備註

使用 _setmaxstdio 設定同時開啟的檔案數允許在stdio層級。

需求

常式

所需的標頭

_getmaxstdio

<stdio.h>

如需相容性資訊,請參閱相容性在簡介中。

範例

// crt_setmaxstdio.c
// The program retrieves the maximum number
// of open files and prints the results
// to the console.

#include <stdio.h>

int main()
{
   printf( "%d\n", _getmaxstdio());

   _setmaxstdio(2048);

   printf( "%d\n", _getmaxstdio());
}
  

.NET Framework 對等用法

不適用。 若要呼叫標準的 c 函式,使用PInvoke。 如需詳細資訊,請參閱平台叫用範例

請參閱

參考

資料流 I/O