用vc怎么根据路径创建文件夹
假如我用VC写一个程序,我要创建D:\\zhuhai\\example\\test.txt这样的一个文件。本来d盘当中没有zhuhai和example文件夹的。那么在代码...
假如我用VC写一个程序,我要创建D:\\zhuhai\\example\\test.txt这样的一个文件。本来d盘当中没有zhuhai和example文件夹的。那么在代码中怎么实现在d盘中创建zhuhai文件夹,又怎么在zhuhai这个文件夹当中创建example文件夹呢??
展开
2个回答
2013-09-01
展开全部
CStdioFile f;
wchar_t fPath[64];
wsprintf(fPath, L"%s", L"error.txt");
MessageBox(fPath);
if(false==f.Open(fPath,CFile::modeCreate|CFile::modeWrite|CFile::typeText))
{
MessageBox(TEXT("error"));
}
::SYSTEMTIME systime;
::GetSystemTime(&systime);
CString s;
s.Format(L"%d-%d-%d %d:%d:%d",systime.wYear,systime.wMonth,systime.wDay,systime.wHour,systime.wMinute,systime.wSecond);
f.WriteString(s);
f.Close();
这个是MFC的,就是这里CFile::modeCreate|CFile::modeWrite|CFile::typeText #include <fstream.h>#include <iostream.h>void main(){
int i,j;
fstream fs;
fs.open("test.txt",ios::in | ios::out);
while(!fs.eof()){
fs>>i;
if(fs.eof()) break;
cout<<i;
}这个是控制台的
wchar_t fPath[64];
wsprintf(fPath, L"%s", L"error.txt");
MessageBox(fPath);
if(false==f.Open(fPath,CFile::modeCreate|CFile::modeWrite|CFile::typeText))
{
MessageBox(TEXT("error"));
}
::SYSTEMTIME systime;
::GetSystemTime(&systime);
CString s;
s.Format(L"%d-%d-%d %d:%d:%d",systime.wYear,systime.wMonth,systime.wDay,systime.wHour,systime.wMinute,systime.wSecond);
f.WriteString(s);
f.Close();
这个是MFC的,就是这里CFile::modeCreate|CFile::modeWrite|CFile::typeText #include <fstream.h>#include <iostream.h>void main(){
int i,j;
fstream fs;
fs.open("test.txt",ios::in | ios::out);
while(!fs.eof()){
fs>>i;
if(fs.eof()) break;
cout<<i;
}这个是控制台的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-01
展开全部
#include "windows.h"
...... CreateDirectory(L"D:\\zhuhai", NULL);
CreateDirectory(L"D:\\zhuhai\\example", NULL);
...... CreateDirectory(L"D:\\zhuhai", NULL);
CreateDirectory(L"D:\\zhuhai\\example", NULL);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询