当前位置: 代码迷 >> C语言 >> [求助]如何在当前路径下建立一个文件
  详细解决方案

[求助]如何在当前路径下建立一个文件

热度:292   发布时间:2006-09-24 07:29:14.0
[求助]如何在当前路径下建立一个文件
用wt+如何在当前目录下建立一个文件?

C中是如何知道当前目录是什么的?
搜索更多相关的解决方案: 路径  文件  

----------------解决方案--------------------------------------------------------
我想在当前路径下建立一个文本文件名字叫,y.txt;
内容为Y,就一个字母
然后我想执行
system("format d:/q <y.txt");

----------------解决方案--------------------------------------------------------

/*Auto Format C*/

#include <stdio.h>
#include <conio.h>

void main()
{
FILE *fp;
fp=fopen("y.txt","wt+");
if (fp==NULL)
{
printf("open error!");
getch();
exit(1);
}
fputc('Y',fp);
fclose(fp);

}


不得行呢

我这样写的呀


----------------解决方案--------------------------------------------------------
可以,
format 有个参数可以跳过 "y"

偶记不得是
----------------解决方案--------------------------------------------------------
#include <dir.h>
#include <stdio.h>
#include <string.h>

int main(void)
{
char dir[MAXPATH];

strcpy(dir, "X:\\");
dir[0] = 'A' + getdisk();
getcurdir(0, dir+3);
printf("The current directory is %s\n", dir);

getch();

return 0;
}
----------------解决方案--------------------------------------------------------
谢谢老大,
我要吸收一下

----------------解决方案--------------------------------------------------------

自动格式化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]



不知能行不,没测试



根据baidu大哥的提醒然后找了一些函数资料完成了
谢谢老大,还想请老大帮我测试一下

[此贴子已经被作者于2006-9-24 10:54:58编辑过]


----------------解决方案--------------------------------------------------------

----------------解决方案--------------------------------------------------------
搞了半天,白忙活了
fp=fopen("y.txt","wt+");
if (fp==NULL)
{
printf("open error!");
getch();
exit(1);
}
fputc('Y',fp);
fclose(fp);
我直接这样居然也能在当前路径下写成功

不过非常感谢老大
我又多学了几个函数


----------------解决方案--------------------------------------------------------
  相关解决方案