aboutsummaryrefslogtreecommitdiffstats
path: root/util/folder/lstat_win.c
blob: 0a1456a3e7d44ece9806ec5964402ded979fc5e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <util/system/defaults.h>
 
#ifdef _win_ 
    #include <util/system/winint.h>
    #include "lstat_win.h"

int lstat(const char* fileName, stat_struct* fileStat) {
    int len = strlen(fileName);
    int convRes = MultiByteToWideChar(CP_UTF8, 0, fileName, len, 0, 0);
    if (convRes == 0) {
        return -1;
    }
    WCHAR* buf = malloc(sizeof(WCHAR) * (convRes + 1));
    MultiByteToWideChar(CP_UTF8, 0, fileName, len, buf, convRes);
    buf[convRes] = 0;

    HANDLE findHandle; 
    WIN32_FIND_DATAW findBuf;
    int result; 
    result = _wstat64(buf, fileStat);
    if (result == 0) { 
        SetLastError(0);
        findHandle = FindFirstFileW(buf, &findBuf);
        if (findBuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT &&
            (findBuf.dwReserved0 == IO_REPARSE_TAG_MOUNT_POINT || findBuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
        {
            fileStat->st_mode = fileStat->st_mode & ~_S_IFMT | _S_IFLNK; 
        } 
        FindClose(findHandle); 
    } 
    free(buf);
    return result; 
} 
 
#endif //_win_