view src/os/win32/ngx_stat.c @ 130:a490ad05164d

nginx-0.0.1-2003-08-11-20:03:06 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 11 Aug 2003 16:03:06 +0000
parents cd035a94e0b6
children c0552e5ab567
line wrap: on
line source


#include <ngx_config.h>

#include <ngx_stat.h>

int ngx_file_type(char *file, ngx_file_info_t *sb)
{
    sb->dwFileAttributes = GetFileAttributes(file);

    if (sb->dwFileAttributes == INVALID_FILE_ATTRIBUTES) {
        return -1;
    }

    return 0;
}

/*
int ngx_stat(char *file, ngx_stat_t *sb)
{
    *sb = GetFileAttributes(file);

    if (*sb == INVALID_FILE_ATTRIBUTES) {
        return -1;
    }

    return 0;
}
*/