0

我想在 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)
             {

             }
        }
    }
4

3 回答 3

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;
}
于 2012-07-17T12:42:37.640 回答
0

由于您有一个 .NET 应用程序(因为您使用的是 Windows 窗体),最简单的方法是使用System::IO::Directory::GetFiles()列出文件夹和所有子文件夹中的所有文件。

array<String^>^ files = GetFiles(folder, "*.*", System::IO::SearchOption::AllDirectories);

AllDirectories 选项使 GetFiles 搜索所有子文件夹中的文件。

于 2012-07-17T03:43:50.650 回答
0

使用 findfirst 和 findnext() 来实现。查看下面的 msdn 链接了解更多详细信息。

http://msdn.microsoft.com/en-us/library/zyzxfzac(v=vs.71).aspx

于 2012-07-17T03:58:29.683 回答