在unix中打开系统调用

时间:2015-08-26 09:24:50

标签: c linux unix

在unix中打开系统调用

以下是开放系统调用的原型:

   int open(const char *pathname, int flags);
   int open(const char *pathname, int flags, mode_t mode);

路径名 - >它用于提及文件的路径,如/home/mohan/a.txt

标志 - >它用于提示文件将以哪种模式打开,如Readonly,writeonly或readwrite。

模式 - > ?

什么是模式的使用以及何时使用模式。有没有使用模式的例子。

提前致谢。

0 个答案:

没有答案