_getmaxstdio
傳回在資料流 I/O 層級中允許的同時開啟的檔案數目。
int _getmaxstdio( void );
傳回值
傳回表示同時開啟檔案數目目前允許在 stdio 層級的數字。
備註
使用 _setmaxstdio 同時設定開啟檔案數目允許在 stdio 層級。
需求
常式 |
必要的標頭 |
---|---|
_getmaxstdio |
<stdio.h> |
如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
範例
// 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。如需詳細資訊,請參閱平台叫用範例。