_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