C++之调用脚本实现复制当前路径指定目录下文件到另外的地方

使用system()可以完成程序调用脚本,其实system(“pause”);就是这个原理的

#include <iostream>
#include <string>
#include <vector>
#include <windows.h>
#include "MyFile.h"
using namespace std;

int main()
{
    
    
	vector<string> vct_strFilePath;
	MyFile myFile;
	//获取当前路径
	char ch_temp[120];
	GetCurrentDirectoryA(120, ch_temp);
	string str_CurrentPath = ch_temp;
	//cout << str_CurrentPath;
	//遍历相对路径的目录
	string str_OldPath = str_CurrentPath.substr(0, str_CurrentPath.find("CPulsCode"));
	myFile.GetWorkList(str_OldPath + "Old\\", vct_strFilePath, true);
	

	//使用system接口调用脚本复制文件
	for (size_t i = 0; i < vct_strFilePath.size(); i++)
	{
    
    
		cout << vct_strFilePath[i] << endl;
		string str_temp = "copy " + vct_strFilePath[i] + " E:\\new\\";
		system(str_temp.c_str());
	}

	system("pause");
	return 0;
}

//获取当前目录下所有文件
void MyFile::GetWorkList(string strWorkPath, vector<string>& vctWorkList, bool bSeachChild)
{
    
    
	WIN32_FIND_DATAA FileData;
	HANDLE FileHandle = FindFirstFileA((strWorkPath + "*.*").c_str(), &FileData);
	if(FileHandle == INVALID_HANDLE_VALUE)
	{
    
    
		return ;
	}
	do
	{
    
    
		if (strcmp(FileData.cFileName, ".") == 0 || strcmp(FileData.cFileName, "..") == 0)
		{
    
    
			continue;
		}
		else if ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)
		{
    
    
			if (bSeachChild)
			{
    
    
				GetWorkList(strWorkPath + FileData.cFileName + "\\", vctWorkList, bSeachChild);
			}
		}
		else
		{
    
    
			vctWorkList.push_back(strWorkPath + FileData.cFileName);
		}
	} while (FindNextFileA(FileHandle, &FileData) != 0);
	FindClose(FileHandle);
	return;
}

猜你喜欢

转载自blog.csdn.net/zw1996/article/details/104978527