0

strcatとstrcat_sの両方を試しましたが、どちらもクラッシュします。なぜこれが起こるのか誰かが知っていますか?問題が見つかりません。

Crash: "Unhandled exception at 0x58636D2A (msvcr110d.dll)"
_Dst        0x00ea6b30  "C:\\Users\\Ruben\\Documents\\School\\" char *
_SizeInBytes    260                         unsigned int
_Src        0x0032ef64  "CKV"                   const char *
available       228                         unsigned int
p           0x00ea6b50  ""                  char *

コード:

#include <Windows.h>
#include <strsafe.h>

extern "C"
{
    char* GetFilesInFolders(LPCWSTR filedir, char* path)
    {
        char* files = "";

        char DefChar = ' ';
        char* Streepje = "-";
        bool LastPoint = false;

        WIN32_FIND_DATA ffd;
        TCHAR szDir[MAX_PATH];
        HANDLE hFind = INVALID_HANDLE_VALUE;
        DWORD dwError = 0;

        StringCchCopy(szDir, MAX_PATH, filedir);
        hFind = FindFirstFile(szDir, &ffd);

        if (INVALID_HANDLE_VALUE == hFind) 
            return "";

        do
        {
            DWORD attributes = ffd.dwFileAttributes;
            LPCWSTR nm = ffd.cFileName;
            char name[260];
            WideCharToMultiByte(CP_ACP,0,ffd.cFileName,-1, name,260,&DefChar, NULL);

            for (int i = 0; i <= 260; i++)
            {
                if (name[i] == '.')
                    LastPoint = true;
                else if (name[i] == ' ')
                    break;
            }

            if (LastPoint == true)
            {
                LastPoint = false;
                continue;
            }

            if (attributes & FILE_ATTRIBUTE_HIDDEN)
            {
                continue;
            }
            else if (attributes & FILE_ATTRIBUTE_DIRECTORY)
            {
                char* newfiledir = "";
                char* newpath = path;
                char* add = "\\";
                char* extra = "*";
                strcat_s(newpath, sizeof(name), name);
                strcat_s(newpath, sizeof(add), add);
                puts(newpath);
                strcpy_s(newfiledir, sizeof(newpath) + 1, newpath);
                strcat_s(newfiledir, sizeof(extra) + 1, extra);
                puts(newfiledir);

                size_t origsize = strlen(newfiledir) + 1;
                const size_t newsize = 100;
                size_t convertedChars = 0;
                wchar_t wcstring[newsize];
                mbstowcs_s(&convertedChars, wcstring, origsize, newfiledir, _TRUNCATE);
                LPCWSTR dir = wcstring;
                GetFilesInFolders(dir, newpath);
            }
            else
            {
                char* file = path;
                strcat_s(file, sizeof(name), name);
                puts(file);
                strcat_s(files, sizeof(file), file);
                strcat_s(files, sizeof(Streepje), Streepje);
                puts(files);
            }
        }
        while (FindNextFile(hFind, &ffd) != 0);

        FindClose(hFind);
        return files;
    }
}

int _tmain(int argc, _TCHAR* argv[])
{
    char* path = "C:\\Users\\Ruben\\Documents\\School\\";
    char* filedir = "C:\\Users\\Ruben\\Documents\\School\\*";
    size_t origsize = strlen(filedir) + 1;
    const size_t newsize = 100;
    size_t convertedChars = 0;
    wchar_t wcstring[newsize];
    mbstowcs_s(&convertedChars, wcstring, origsize, filedir, _TRUNCATE);
    LPCWSTR dir = wcstring;
    char* files = GetFilesInFolders(dir, path);
    return 0;
}

追加情報:ブーストや文字列を使用したくないので、これをユニコード(デフォルト)のままにしておきたい。

4

2 に答える 2

2

を に割り当ててconst char*からfiles、それに追加しようとします。

char* files = "";
// ... 
strcat_s(files, sizeof(file), file);

定数文字列リテラルは変更できません。

コンパイラの警告をオンにして、それらを確認することをお勧めします。const char*これは、を に代入することについて警告しますchar*。これを修正するには、filesbeconstに変更した可能性があります。これにより、strcpy_sコンパイルができなくなります。

于 2012-09-25T16:25:59.023 に答える
0

変数がどのようにメモリに格納されるか、またはポインタがどのように機能するかを理解していないようです。あなた_tmain()char * path定数文字列リテラルを指していて、それを に渡しGetFilesInFolders()、そこで変更されます。char *コンパイラは、古い C プログラムとの下位互換性のために、s が定数文字列を指すことを許可する傾向があります。これらは変更できません。それらに追加することはできません。コンパイラは(一般に)これらを読み取り専用セグメントに入れます。これが、例外が発生する理由の 1 つです。

あなたの全体GetFilesInFolders()が間違っています。そして、DarkFalcon が指摘したように、どこにもスペースを割り当てておらずfiles、定数文字列リテラルを指しています。

「The C++ Programming Language」を入手して、第 5 章を読んでください。

于 2012-09-25T16:52:58.087 に答える