博客
关于我
c++ 复制文件到指定目录
阅读量:541 次
发布时间:2019-03-09

本文共 791 字,大约阅读时间需要 2 分钟。

代码如下:

#if 1 //仅供测试用	wstring  strsavepath = lpOutPutDir;	strsavepath += L"classified";	string imgsavepath = StringConvert::ws2s(strsavepath);	const char* dir = imgsavepath.c_str();	if (_access(dir, 0) == -1)	{		_mkdir(dir);	}	for (int i = 0; i < m_ImgPath.size(); i++)	{		string saveimgfilepath = imgsavepath +"\\"+ to_string(m_vecImgFlagOut[i]);		const char* dir = saveimgfilepath.c_str();		if (_access(dir, 0) == -1)		{			_mkdir(dir);		}		//执行复制操作		wstring srcimgfilepath = m_ImgPath[i];		string::size_type iPos = srcimgfilepath.find_last_of('\\') + 1;		wstring filename = srcimgfilepath.substr(iPos, srcimgfilepath.length() - iPos);		wstring dstimgfilepath = StringConvert::s2ws(saveimgfilepath)+L"\\" + filename;		CopyFileW(srcimgfilepath.c_str(), dstimgfilepath.c_str(), FALSE);	}	#endif

 

转载地址:http://jtqiz.baihongyu.com/

你可能感兴趣的文章
NLP学习笔记:使用 Python 进行NLTK
查看>>
NLP度量指标BELU真的完美么?
查看>>
NLP的不同研究领域和最新发展的概述
查看>>
NLP的神经网络训练的新模式
查看>>
NLP采用Bert进行简单文本情感分类
查看>>
NLP问答系统:使用 Deepset SQUAD 和 SQuAD v2 度量评估
查看>>
NLP项目:维基百科文章爬虫和分类【02】 - 语料库转换管道
查看>>
NLP:从头开始的文本矢量化方法
查看>>
NLP:使用 SciKit Learn 的文本矢量化方法
查看>>
NLTK - 停用词下载
查看>>
nmap 使用总结
查看>>
nmap 使用方法详细介绍
查看>>
nmap使用
查看>>
nmap使用实战(附nmap安装包)
查看>>
Nmap哪些想不到的姿势
查看>>