File: dir_exists.Rd

package info (click to toggle)
r-cran-xfun 0.20-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 680 kB
  • sloc: ansic: 242; sh: 22; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 703 bytes parent folder | download | duplicates (2)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/paths.R
\name{dir_exists}
\alias{dir_exists}
\alias{file_exists}
\title{Test the existence of files and directories}
\usage{
dir_exists(x)

file_exists(x)
}
\arguments{
\item{x}{A vector of paths.}
}
\value{
A logical vector.
}
\description{
These are wrapper functions of \code{utils::\link{file_test}()} to test the
existence of directories and files. Note that \code{file_exists()} only tests
files but not directories, which is the main difference between
\code{\link{file.exists}()} in base R. If you use are using the R version
3.2.0 or above, \code{dir_exists()} is the same as \code{\link{dir.exists}()}
in base R.
}