Почему я пишу 0 байтов с помощью WriteFile?

0

Я пытаюсь создать программу, которая находит следующий.exe файл в пользовательском каталоге и записывает в него флаг (для класса безопасности компьютера).

В настоящее время он пишет 0 байт, и я не уверен, почему.

Вот мой код:

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <Windows.h>
#include <fstream>

using namespace std;

typedef wchar_t wchar;

struct thePlague{
    long int origBytes;
    wchar_t flag[6];
};

void main() {
WIN32_FIND_DATA findFileData; //Windows structure that receives info about a found file or directory
HANDLE hFind = INVALID_HANDLE_VALUE; //Handle that holds whether or not a file was successfully found with FindNextFile
LARGE_INTEGER fileSize;
wchar szDir[MAX_PATH];
DWORD dwError = 0;

wchar directory[MAX_PATH];
wcout<<L"Please enter a directory: ";
wcin>>directory;

// Check that the input path plus 7 is not longer than MAX_PATH.
// 7 characters are for the "\*.exe" plus NULL appended below.
if (wcslen(directory) > (MAX_PATH - 7)) {
    wcout<<L"\nDirectory is too long\n";
    return;
}

wcout<<L"Target directory is: "<<directory<<endl;

// Prepare string for use with FindFile functions.  First, copy the
// string to a buffer, then append '\*' to the directory name.

wcscpy(szDir, directory);
wcscat(szDir, L"\\*.exe");

//Find the first file in the directory

hFind = FindFirstFile(szDir, &findFileData);

if (hFind == INVALID_HANDLE_VALUE) {
    wcout<<L"FindFirstFile Failed"<<GetLastError()<<endl;
    return;
}

do {
    fileSize.LowPart = findFileData.nFileSizeLow;
    fileSize.HighPart = findFileData.nFileSizeHigh;
    wcout<<findFileData.cFileName<<L" "<<fileSize.QuadPart<<L" bytes\n";

    DWORD dwBytesWritten = 0; //# of bytes written by WriteFile
    wchar_t *buffer = (wchar *)malloc(sizeof(thePlague)); //A buffer the size of our struct (infection flag)
    wofstream writeToBuffer(buffer, ios::binary); //Open the buffer for writing
    thePlague newVictim; //New infection flag

    writeToBuffer.write((const wchar_t*)&newVictim, sizeof(thePlague));
    writeToBuffer.close();

    DWORD dwErrorFlag;

    dwErrorFlag = WriteFile(hFind, //The handle holding the file we are writing to
              buffer, //The buffer holding what we want to write to the file, in this case a struct
              sizeof(thePlague), //How many bytes to write to the file
              &dwBytesWritten, //Where to store the # of bytes successfully written
              NULL //Where to write to incase of overlap
              );

    if (dwErrorFlag == false)
        wcout<<L"Error was: "<<GetLastError()<<endl;

    wcout<<L"# of bytes written: "<<dwBytesWritten<<endl;

} while(FindNextFile(hFind, &findFileData) != 0);


FindClose(hFind);
return;
}

Когда я запускаю это, я получаю:

Please enter a directory: C:\Infect
Target directory is: C:\Infect
hello.exe 65536 bytes
Error was: 6
# of bytes written: 0
Press any key to continue . . .

Я знаю, что это ERROR_INVALID_HANDLE, но как я могу это исправить?

  • 1
    Вам нужно передать дескриптор файла, а не какой-либо другой дескриптор. FindNextFile вы получаете из FindFirstFile предназначен только для использования с FindNextFile и FindClose .
Теги:
file-io
exe

2 ответа

6
Лучший ответ

Вам нужно открыть файл перед записью на него. Ваша HANDLE hFind - это просто ручка для итерации по каталогам/файлам, а не к открытому дескриптору файла.

Используйте CreateFile(), чтобы открыть файл

  • 0
    О, хорошо, спасибо! Я думал, что CreateFile использовался только для создания новых файлов, а не для открытия уже существующего. Спасибо за помощь, попробую
3

FindFirstFile возвращает дескриптор поиска, но WriteFile требует открытого дескриптора файла. Используйте CreateFile чтобы открыть файл, прежде чем писать ему с помощью WriteFile.

Ещё вопросы

Сообщество Overcoder
Наверх
Меню