我想在VC ++ 2008(Windows窗体应用程序)中构建一个应用程序。
这里我想浏览我选择的文件夹(按下“浏览”按钮),这样当我按下“扫描”按钮时,我的应用程序将找到我选择的文件夹中的所有文件,包括子文件夹。然后所有文件都放在一个列表框中,我有这个代码将在c#中不在c ++中,如何在c ++中更改我的代码?
private void btnScan_Click_1(object sender, EventArgs e)
{
List<string> search = Directory.GetFiles(folderBrowserDialog1.SelectedPath, "*.*", SearchOption.AllDirectories).ToList();
progressBar1.Maximum = search.Count;
//foreach (Directory.GetDirectories.search))
foreach(string item in search)
{
try
{
StreamReader stream = new StreamReader(item);
string read = stream.ReadToEnd();
foreach(string st in viruslist)
{
if(Regex.IsMatch(read,st))
{
viruses+=1;
label1.Text+= viruses;
listBox1.Items.Add(item);
}
progressBar1.Increment(1);
}
}
catch(Exception ex)
{
}
}
}
答案 0 :(得分:1)
此代码可能有用....
#include <Windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <string>
struct SearchFile
{
typedef std::vector<std::string> FileNameArray;
FileNameArray files;
FileNameArray::iterator begin()
{
return files.begin();
}
FileNameArray::iterator end()
{
return files.end();
}
int count() const
{
return (int)files.size();
}
std::string operator[](int index)
{
return files[index];
}
void operator()(const std::string &path, const std::string &pattern)
{
WIN32_FIND_DATA wfd;
HANDLE hf;
std::string findwhat;
std::vector<std::string> dir;
findwhat = path + "\\*"; // directory
hf = FindFirstFile(findwhat.c_str(), &wfd);
while (hf != INVALID_HANDLE_VALUE)
{
if (wfd.cFileName[0] != '.' && (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
std::string found;
found = path + "\\" + wfd.cFileName;
dir.push_back(found);
}
if (!FindNextFile(hf, &wfd))
{
FindClose(hf);
hf = INVALID_HANDLE_VALUE;
}
}
findwhat = path + "\\" + pattern; // files
hf = FindFirstFile(findwhat.c_str(), &wfd);
while (hf != INVALID_HANDLE_VALUE)
{
if (wfd.cFileName[0] != '.' && !(wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
std::string found;
found = path + "\\" + wfd.cFileName;
files.push_back(found);
}
if (!FindNextFile(hf, &wfd))
{
FindClose(hf);
hf = INVALID_HANDLE_VALUE;
}
}
// continue with directories
for (std::vector<std::string>::iterator it = dir.begin(); it != dir.end(); ++it)
this->operator()(*it, pattern);
}
};
int main(void)
{
SearchFile sf;
// get all .jpg files in current dir
sf(".", "*.jpg");
for (int i = 0; i != sf.count(); ++i)
{
printf("%s\n", sf[i].c_str());
}
return 0;
}
答案 1 :(得分:0)
由于您拥有.NET应用程序(因为您使用的是Windows Forms),最简单的方法是使用System::IO::Directory::GetFiles()列出文件夹和所有子文件夹中的所有文件。
array<String^>^ files = GetFiles(folder, "*.*", System::IO::SearchOption::AllDirectories);
AllDirectories选项使GetFiles搜索所有子文件夹中的文件。
答案 2 :(得分:0)
使用findfirst和findnext()来实现。请查看以下msdn链接了解更多详情。
http://msdn.microsoft.com/en-us/library/zyzxfzac(v=vs.71).aspx