summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 07:04:25 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 07:04:25 +0000
commitd70e9a5568f9e5c9bb16b521b44bb558b96893b1 (patch)
tree4eda581d47a1554319f661107614e12083c4927c /win32
parent9d72cb269cfc3765d30e67c36a4eb1e40e7f570d (diff)
* win32/win32.c, include/ruby/win32.h (rb_w32_access): new function to
replace MSVCRT's access(). [ruby-core:25761] * file.c (eaccess): workaround for recent MSVCRT is no longer needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 1d6a4a68e4..353873a22b 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4054,6 +4054,20 @@ rb_w32_stati64(const char *path, struct stati64 *st)
return ret;
}
+int
+rb_w32_access(const char *path, int mode)
+{
+ struct stati64 stat;
+ if (rb_w32_stati64(path, &stat) != 0)
+ return -1;
+ mode <<= 6;
+ if ((stat.st_mode & mode) != mode) {
+ errno = EACCES;
+ return -1;
+ }
+ return 0;
+}
+
static int
rb_chsize(HANDLE h, off_t size)
{