当前位置: 代码迷 >> C语言 >> [求助]Fopen函数的一个结合问题
  详细解决方案

[求助]Fopen函数的一个结合问题

热度:229   发布时间:2007-10-07 20:33:13.0
[求助]Fopen函数的一个结合问题
头文件省略。
int main(void)
{
TCHAR infoBuf[INFO_BUFFER_SIZE];
GetSystemDirectory( infoBuf, INFO_BUFFER_SIZE );
fopen("%s\\cyc.exe","w");//请问这里应该如何更改才能达到把cyc.exe这个文件生成到 getsystemDirectory得到的目录里面呢?
printf( " %s", infoBuf );
}
搜索更多相关的解决方案: Fopen  函数  结合  

----------------解决方案--------------------------------------------------------
fopen("%s\\cyc.exe","w"); %s代表文件路径
这样写,可以么?
----------------解决方案--------------------------------------------------------
fopen not printf. use string functions, combine two string
----------------解决方案--------------------------------------------------------
  相关解决方案