diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-10-21 02:55:35 +0200 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-10-21 02:55:35 +0200 |
commit | 02658040031f93f91ef50c947443b5efdd938c12 (patch) | |
tree | f97953c5b0f6c090ad0d094c0b0676d36ec8a0ed /src/skel/crossplatform.cpp | |
parent | Messages, fix Font (diff) | |
download | re3-02658040031f93f91ef50c947443b5efdd938c12.tar re3-02658040031f93f91ef50c947443b5efdd938c12.tar.gz re3-02658040031f93f91ef50c947443b5efdd938c12.tar.bz2 re3-02658040031f93f91ef50c947443b5efdd938c12.tar.lz re3-02658040031f93f91ef50c947443b5efdd938c12.tar.xz re3-02658040031f93f91ef50c947443b5efdd938c12.tar.zst re3-02658040031f93f91ef50c947443b5efdd938c12.zip |
Diffstat (limited to '')
-rw-r--r-- | src/skel/crossplatform.cpp | 49 |
1 files changed, 27 insertions, 22 deletions
diff --git a/src/skel/crossplatform.cpp b/src/skel/crossplatform.cpp index ac4bbe85..e9320c05 100644 --- a/src/skel/crossplatform.cpp +++ b/src/skel/crossplatform.cpp @@ -26,34 +26,39 @@ void GetLocalTime_CP(SYSTEMTIME *out) { // Compatible with Linux/POSIX and MinGW on Windows #ifndef _WIN32 HANDLE FindFirstFile(const char* pathname, WIN32_FIND_DATA* firstfile) { - char newpathname[32]; - - strncpy(newpathname, pathname, 32); - char* path = strtok(newpathname, "*"); - + char pathCopy[32]; + + strncpy(pathCopy, pathname, 32); + char* folder = strtok(pathCopy, "*"); + // Case-sensitivity and backslashes... - char *real = casepath(path); - if (real) { - real[strlen(real)] = '*'; - char *extension = strtok(NULL, "*"); - if (extension) - strcat(real, extension); - - strncpy(newpathname, real, 32); - free(real); - path = strtok(newpathname, "*"); + char *realFolder = casepath(folder); + char *extension = nil; + if (realFolder) { + realFolder[strlen(realFolder)] = '*'; + extension = strtok(NULL, "*"); + if (extension) { + strcat(realFolder, extension); + } + + strncpy(pathCopy, realFolder, 32); + free(realFolder); + folder = strtok(pathCopy, "*"); + } else { + // Wildcard (*) + if (strlen(folder) + 1 != strlen(pathname)) + extension = strtok(NULL, "*"); } - - strncpy(firstfile->folder, path, sizeof(firstfile->folder)); - // Both w/ extension and w/o extension is ok - if (strlen(path) + 1 != strlen(pathname)) - strncpy(firstfile->extension, strtok(NULL, "*"), sizeof(firstfile->extension)); + strncpy(firstfile->folder, folder, sizeof(firstfile->folder)); + + if (extension) + strncpy(firstfile->extension, extension, sizeof(firstfile->extension)); else - strncpy(firstfile->extension, "", sizeof(firstfile->extension)); + firstfile->extension[0] = '\0'; HANDLE d; - if ((d = (HANDLE)opendir(path)) == NULL || !FindNextFile(d, firstfile)) + if ((d = (HANDLE)opendir(folder)) == NULL || !FindNextFile(d, firstfile)) return NULL; return d; |