exist函数C语言的简单介绍

exist()在c语言中哪个头文件中你说的应该是exit()函数吧exist函数C语言,这个函数的详细资料如下:
函数名: exit()
所在头文件:stdlib.h(如果是”VC6.0“的话头文件为:windows.h)
功 能: 关闭所有文件,终止正在执行的进程 。
exit(1)表示异常退出.这个1是返回给操作系统的 。
exit(x)(x不为0)都表示异常退出
exit(0)表示正常退出
exit()的参数会被传递给一些操作系统,包括UNIX,Linux,和MS DOS,以供其exist函数C语言他程序使用 。
stdlib.h: void exit(int status);
参 数 : status //程序退出的返回值.
C语言_access函数怎么用函数名: access
功能: 确定文件的访问权限
用法: int access(const char *filenames, int amode);
程序例:
#include stdio.h
#include io.h
int file_exists(char *filename);
int main(void)
{
printf("Does NOTEXIST.FIL exist: %s/n",
file_exists("NOTEXISTS.FIL") ? "YES" : "NO");
return 0;
}
int file_exists(char *filename)
{
return (access(filename, 0) == 0);
}
access(filename, 0)0 表示判断文件是否存在
finename 文件名称mode 模式,共5种模式:
0-检查文件是否存在
1-检查文件是否可运行
2-检查文件是否可写访问
4-检查文件是否可读访问
6-检查文件是否可读/写访问
access 返回值是0的时候,表示存在,而返回-1的时候,表示失败 。
if(access(_Filename,0) == 0)
printf("存在");
else
不存在 。
C语言判断指定文件是否存在头文件exist函数C语言:io.h
功 能: 确定文件或文件夹的访问权限 。即exist函数C语言 , 检查某个文件的存取方式,比如说是只读方式、只写方式等 。如果指定的存取方式有效,则函数返回0,否则函数返回-1 。
用 法: int access(const char *filenpath, int mode); 或者int _access( const char *path, int mode );
参数说明:
filenpath
文件或文件夹的路径,当前目录直接使用文件或文件夹名
备注:当该参数为文件的时候,access函数能使用mode参数所有的值 , 当该参数为文件夹的时候,access函数值能判断文件夹是否存在 。在WIN NT 中,所有的文件夹都有读和写权限
mode
要判断的模式
在头文件unistd.h中的预定义如下:
#define R_OK 4 /* Test for read permission. */
#define W_OK 2 /* Test for write permission. */
#define X_OK 1 /* Test for execute permission. */
#define F_OK 0 /* Test for existence. */
具体含义如下:
00 只判断是否存在
02 只判断是否有写权限
04 只判断是否有读权限
06 判断是否有读并且有写权限
程序例
#includestdio.h
#includeio.h
int file_exists(char *filename);
int main(void)
{
printf("Does NOTEXIST.FIL exist: %s\n",
file_exists("NOTEXISTS.FIL") ?"YES":"NO");
return 0;
}
int file_exists(char *filename)
{
return (access(filename, 0) == 0);
}
头文件:io.h
功 能: 确定文件或文件夹的访问权限 。即,检查某个文件的存取方式 , 比如说是只读方式、只写方式等 。如果指定的存取方式有效,则函数返回0,否则函数返回-1 。
用 法: int access(const char *filenpath, int mode); 或者int _access( const char *path, int mode );
参数说明:
filenpath
文件或文件夹的路径,当前目录直接使用文件或文件夹名
备注:当该参数为文件的时候,access函数能使用mode参数所有的值,当该参数为文件夹的时候,access函数值能判断文件夹是否存在 。在WIN NT 中,所有的文件夹都有读和写权限
mode
要判断的模式
在头文件unistd.h中的预定义如下:
#define R_OK 4 /* Test for read permission. */
#define W_OK 2 /* Test for write permission. */
#define X_OK 1 /* Test for execute permission. */
#define F_OK 0 /* Test for existence. */
具体含义如下:
00 只判断是否存在
02 只判断是否有写权限
04 只判断是否有读权限
06 判断是否有读并且有写权限
程序例
#includestdio.h
#includeio.h
int file_exists(char *filename);
int main(void)
{
printf("Does NOTEXIST.FIL exist: %s\n",
file_exists("NOTEXISTS.FIL") ?"YES":"NO");
return 0;
}
int file_exists(char *filename)
{
return (access(filename, 0) == 0);
}
求C语言函数大全函数名: abort
功能: 异常终止一个进程
用法: void abort(void);
程序例:
#include stdio.h
#include stdlib.h
int main(void)
{
printf("Calling abort()\n");
abort();
return 0; /* This is never reached */
}
函数名: abs
功能: 求整数exist函数C语言的绝对值
用法: int abs(int i);
程序例:
#include stdio.h
#include math.h
int main(void)
{
int number = -1234;
printf("number: 赽solute value: %d\n", number, abs(number));
return 0;
}
函数名: absread, abswirte
功能: 绝对磁盘扇区读、写数据
用法: int absread(int drive, int nsects, int sectno, void *buffer);
int abswrite(int drive, int nsects, in tsectno, void *buffer);
程序例:
/* absread example */
#include stdio.h
#include conio.h
#include process.h
#include dos.h
int main(void)
{
int i, strt, ch_out, sector;
char buf[512];
printf("Insert a diskette into drive A and press any key\n");
getch();
sector = 0;
if (absread(0, 1, sector, buf) != 0)
{
perror("Disk problem");
exit(1);
}
printf("Read OK\n");
strt = 3;
for (i=0; i80; i)
{
ch_out = buf[strt i];
putchar(ch_out);
}
printf("\n");
return(0);
}
函数名: access
功能: 确定文件exist函数C语言的访问权限
用法: int access(const char *filename, int amode);
程序例:
#include stdio.h
#include io.h
int file_exists(char *filename);
int main(void)
{
printf("Does NOTEXIST.FIL exist: %s\n",
file_exists("NOTEXISTS.FIL") ? "YES" : "NO");
return 0;
}
int file_exists(char *filename)
{
return (access(filename, 0) == 0);
}
函数名: acos
功能: 反余弦函数
用法: double acos(double x);
程序例:
#include stdio.h
#include math.h
int main(void)
{
double result;
double x = 0.5;
result = acos(x);
printf("The arc cosine of %lf is %lf\n", x, result);
return 0;
}
函数名: allocmem
功能: 分配DOS存储段
用法: int allocmem(unsigned size, unsigned *seg);
程序例:
#include dos.h
#include alloc.h
#include stdio.h
int main(void)
{
unsigned int size, segp;
int stat;
size = 64; /* (64 x 16) = 1024 bytes */
stat = allocmem(size, segp);
if (stat == -1)
printf("Allocated memory at segment: %x\n", segp);
else
printf("Failed: maximum number of paragraphs available is \u\n",
stat);
return 0;
}
函数名: arc
功能: 画一弧线
用法: void far arc(int x, int y, int stangle, int endangle, int radius);
程序例:
#include graphics.h
#include stdlib.h
#include stdio.h
#include conio.h
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int midx, midy;
int stangle = 45, endangle = 135;
int radius = 100;
/* initialize graphics and local variables */
initgraph(gdriver, gmode, "");
/* read result of initialization */
errorcode = graphresult();/* an error occurred */
if (errorcode != grOk)
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1);/* terminate with an error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
setcolor(getmaxcolor());
/* draw arc */
arc(midx, midy, stangle, endangle, radius);
/* clean up */
getch();
closegraph();
return 0;
}
函数名: asctime
功能: 转换日期和时间为ASCII码
用法: char *asctime(const struct tm *tblock);
程序例:
#include stdio.h
#include string.h
#include time.h
int main(void)
{
struct tm t;
char str[80];
/* sample loading of tm structure*/
t.tm_sec= 1;/* Seconds */
t.tm_min= 30; /* Minutes */
t.tm_hour= 9;/* Hour */
t.tm_mday= 22; /* Day of the Month*/
t.tm_mon= 11; /* Month */
t.tm_year= 56; /* Year - does not include century */
t.tm_wday= 4;/* Day of the week*/
t.tm_yday= 0;/* Does not show in asctime*/
t.tm_isdst= 0;/* Is Daylight SavTime; does not show in asctime */
/* converts structure to null terminated
string */
strcpy(str, asctime(t));
printf("%s\n", str);
return 0;
}
函数名: asin
功能: 反正弦函数
用法: double asin(double x);
程序例:
#include stdio.h
#include math.h
int main(void)
{
double result;
double x = 0.5;
result = asin(x);
printf("The arc sin of %lf is %lf\n", x, result);
return(0);
}
函数名: assert
功能: 测试一个条件并可能使程序终止
用法: void assert(int test);
程序例:
#include assert.h
#include stdio.h
#include stdlib.h
struct ITEM {
int key;
int value;
};
/* add item to list, make sure list is not null */
void additem(struct ITEM *itemptr) {
assert(itemptr != NULL);
/* add item to list */
}
int main(void)
{
additem(NULL);
return 0;
}
函数名: atan
功能: 反正切函数
用法: double atan(double x);
程序例:
#include stdio.h
#include math.h
int main(void)
{
double result;
double x = 0.5;
result = atan(x);
printf("The arc tangent of %lf is %lf\n", x, result);
return(0);
}
函数名: atan2
功能: 计算Y/Xexist函数C语言的反正切值
用法: double atan2(double y, double x);
程序例:
#include stdio.h
#include math.h
int main(void)
{
double result;
double x = 90.0, y = 45.0;
result = atan2(y, x);
printf("The arc tangent ratio of %lf is %lf\n", (y / x), result);
return 0;
}
函数名: atexit
功能: 注册终止函数
用法: int atexit(atexit_t func);
程序例:
#include stdio.h
#include stdlib.h
void exit_fn1(void)
{
printf("Exit function #1 called\n");
}
void exit_fn2(void)
{
printf("Exit function #2 called\n");
}
int main(void)
{
/* post exit function #1 */
atexit(exit_fn1);
/* post exit function #2 */
atexit(exit_fn2);
return 0;
}
函数名: atof
功能: 把字符串转换成浮点数
用法: double atof(const char *nptr);
程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
float f;
char *str = "12345.67";
f = atof(str);
printf("string = %s float = %f\n", str, f);
return 0;
}
函数名: atoi
功能: 把字符串转换成长整型数
用法: int atoi(const char *nptr);
程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
int n;
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer = %d\n", str, n);
return 0;
}
函数名: atol
功能: 把字符串转换成长整型数
用法: long atol(const char *nptr);
程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
long l;
char *str = "98765432";
l = atol(lstr);
printf("string = %s integer = %ld\n", str, l);
return(0);
}
c中使用isExist函数时需要包含什么头文件?其实在ANSI C之前C语言是不需要声明函数就能调用的 。在编译阶段,调用没有声明的函数会把这个问题拖延到链接阶段,在链接阶段找不到符号才由链接器报错 。那么没有声明的情况下怎么知道这个函数到底是怎样的原型呢……他们把这叫做autoprototype,根据调用时传入的形参的类型猜测函数的原型 。实际上在ANSI C中你还是不需要完整的声明原型,可以在声明的时候把参数列表忽略掉 , 让编译器去根据调用处猜测函数的原型 。不过这样写出来之后根据不同的调用约定有时候会由于编写者的错误而意外的破坏栈帧 。这样对许多人来说还是留下一个问题:古老的Turbo C并不遵循ANSI C的建议,它怎么需要提前声明函数?老实说Turbo C是一个特例 。我相信贝尔实验室那帮发明了C和UNIX的人都会认为Turbo C的这个设计很无聊,不符合使用的习惯以及实际的需要 。
C语言,判断一个文件是否存在你贴的这个函数PathFileExists并不是C语言提供的库函数,而是windows系统提供的系统调用,如果你是初学者,尽量用C语言提供的库函数来实现功能,你可以这样:
int exist(char *file)//传入想要判断的路径字符串指针
{
FILE *fp;
fp=fopen(file,"r");//fopen是一个C库函数 , 用于打开文件,"r"是只读模式,在这种模式下,如果文件存在 , 则能成功以只读模式打开,fopen返回一个非0的文件描述符 , 如果文件不存在,则fopen返回NULL(NULL意思是空) 。正好可以利用这一点来判断文件是否存在
if(fp=NULL)
return 0;//不存在返回0
else
{
fclose(fp);//存在的话,要先把之前打开的文件关掉
return 1;//然后返回1
}
}
这样,你就可用这里定义的exist函数判断文件是否存在了 。比如
if(exist("a.txt")==0)printf("不存在!");
elseprintf("存在!");
如果你真想用PathFileExists这个函数 , 那么也很简单,LPCTSTR你可以简单理解为就相当于char*,这是windows封装的一个数据类型 。_in是一个修饰符,表示参数是传入给PathFileExists用的而不是由PathFileExists传出来的 。这个函数可以这样用:
if(PathFileExists("a.txt")==FALSE)printf("不存在!");
elseprintf("存在!");
用这个函数时注意加头文件windows.h
有问题请继续追问啊
【exist函数C语言的简单介绍】关于exist函数C语言和的介绍到此就结束了 , 不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读