Rev 42746 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/file.access.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{file.access}\alias{file.access}\title{Ascertain File Accessibility}\description{Utility function to access information about files on the user'sfile systems.}\usage{file.access(names, mode = 0)}\arguments{\item{names}{character vector containing file names.}\item{mode}{integer specifying access mode required.}}\details{Tilde-expansion is done on \code{names}: see \code{\link{path.expand}}.The \code{mode} value can be the exclusive or of the following values\describe{\item{0}{test for existence.}\item{1}{test for execute permission.}\item{2}{test for write permission.}\item{4}{test for read permission.}}#ifdef unixPermission will be computed for real user ID and real group ID (ratherthan the effective IDs).#endif#ifdef windowsAs from \R 2.6.0 this function no longer uses the C function\code{_access} in \file{msvcrt.dll}, but has been rewritten usingWin32 API functions.Windows does not have the concept of an \sQuote{executable file}, sothis function regards directories and files with extension\file{.exe}, \file{.bat}, \file{.cmd} and \file{.com} as executable.(\code{\link{system}} makes the same assumption.)#endifPlease note that it is not good to use this function to test beforetrying to open a file. On a multi-tasking system, it is possible thatthe accessibility of a file will change between the time you call\code{file.access()} and the time you try to open the file. It isbetter to wrap file open attempts in \code{\link{try}}.}\value{An integer vector with values \code{0} for success and \code{-1} for failure.}\note{This is intended as a replacement for the S-PLUS function\code{access}, a wrapper for the C function of the same name, whichexplains the return value encoding. Note thatthe return value is \bold{false} for \bold{success}.}\seealso{\code{\link{file.info}}, \code{\link{try}}}\examples{fa <- file.access(dir("."))table(fa) # count successes & failures#ifdef windowsd <- dir(file.path(R.home(), "bin"))df <- dir(file.path(R.home(), "bin"), full.names = TRUE)d[file.access(df, 0) == 0] # all existd[file.access(df, 1) == 0] # some are executable, some are notd[file.access(df, 2) == 0] # hopefully all are readabled[file.access(df, 4) == 0] # they may or may not be writeable#endif}\keyword{file}