_creat

_creat是電腦函式,函式功能是創建一個檔案。

函式簡介

函式原型:

int _creat(

const char *filename,

int pmode

);

所屬庫:io.h

函式功能:創建一個檔案

相關函式:_tcreat 、_wcreat

程式示例

#include <sys/types.h>

#include <sys/stat.h>

#include <io.h>

#include <stdio.h>

#include <stdlib.h>

int main( void )

{

int fh;

fh = _creat( "data", _S_IREAD | _S_IWRITE ); // C4996

// Note: _creat is deprecated; use _sopen_s instead

if( fh == -1 )

perror( "Couldn't create data file" );

else

{

printf( "Created data file.\n" );

_close( fh );

}

}

相關詞條

熱門詞條

聯絡我們