C中是如何知道当前目录是什么的?
自动格式化D盘
[CODE]/*Auto Format C*/
#include <stdio.h>
#include <conio.h>
#include <dir.h>
#include <string.h>
void main()
{
FILE *fp;
char path[MAXPATH];
strcpy(path, "X:\\");
path[0] ='A' + getdisk(); /*得到当前盘符的ASC码*/
getcurdir(0, path+3);
/*得到当前盘的当前路径,dir+3表示把返回的路径从path[3]开始放起*/
strcat(path,"\\Y.txt");
/*在后面加上文件名,就是完整路径了.*/
fp=fopen(path,"wt+");
if (fp==NULL)
{
printf("open error!");
getch();
exit(1);
}
fputc('Y',fp);
fclose(fp);
system("format d:/q <y.txt");
}[/CODE]
不知能行不,没测试
[此贴子已经被作者于2006-9-24 10:54:58编辑过]