Добрый день,
У меня есть справочный каталог и каталог. Я хотел бы сравнить каталог на основе моего справочного каталога. Сравнение двух папок по их содержимому. Как я смогу закодировать это? Пожалуйста помоги.
Ваша помощь будет принята с благодарностью. Заранее спасибо. Bdw, я использую C ++ в Visual Studio Express.
Для C ++ / CLI:
Нам нужно #include <vcclr.h>
конвертировать строки C ++ и строки CLI. Изменить на следующее:
#include <vector>
#include <string>
#include <windows.h>
int get_files_and_folders(std::wstring dir, std::vector<std::wstring> &fullpath, std::vector<int> &filesize)
{
if (!dir.size()) return 0;
if (dir[dir.size() - 1] != '\\') dir += L"\\";
WIN32_FIND_DATA find = { 0 };
std::wstring wildcard = dir + L"*";
HANDLE hfind = FindFirstFile(wildcard.c_str(), &find);
if (hfind == INVALID_HANDLE_VALUE)
return 0;
do
{
std::wstring filename = find.cFileName;
if (filename == L"." || filename == L"..")
continue;
std::wstring path = dir + filename;
fullpath.push_back(path);
filesize.push_back(find.nFileSizeLow);
if (find.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
get_files_and_folders(path, fullpath, filesize);
} while (FindNextFile(hfind, &find));
FindClose(hfind);
return 1;
}
int compare_folders(std::wstring &dir1, std::wstring &dir2, std::wstring &result)
{
std::vector<int> filesize1, filesize2;
std::vector<std::wstring> path1, path2;
if (!get_files_and_folders(dir1, path1, filesize1)) return 0;
if (!get_files_and_folders(dir2, path2, filesize2)) return 0;
//test
for (unsigned i = 0; i < path1.size(); i++)
{
System::String^ s = gcnew System::String(path1[i].c_str());
System::Diagnostics::Trace::WriteLine(s);
}
if (path1.size() != path2.size())
{
result += L"file + folder count doesn't match\n";
return 0;
}
for (unsigned i = 0; i < path1.size(); i++)
{
std::wstring filename1 = path1[i];
std::wstring filename2 = path2[i];
filename1.erase(0, dir1.size() + 1);
filename2.erase(0, dir2.size() + 1);
if (filename1 != filename2)
{
result += L"filename doesn't match\n";
return 0;
}
if (filesize1[i] != filesize2[i])
{
result += L"filesize doesn't match\n";
return 0;
}
//todo:
//open file by fullpath name and compare each bit by bit...?
}
result = L"match found\n";
return 1;
}
Теперь вы можете вызвать функцию из CLI
//In C++/CLI form:
#include <vcclr.h>
String^ str1 = L"c:\\test1";
String^ str2 = L"c:\\test2";
//convert strings from CLI to C++
pin_ptr<const wchar_t> dir1 = PtrToStringChars(str1);
pin_ptr<const wchar_t> dir2 = PtrToStringChars(str2);
std::wstring result;
compare_folders(std::wstring(dir1), std::wstring(dir2), result);
//convert strings from C++ to CLI
System::String^ str = gcnew System::String(result.c_str());
MessageBox::Show(str);
PS, в более раннем примере я включил using namespace std;
но этого не должно быть в формах.