R Command to check if a file exists in the directory
What is it:
R is a free software programming language used in the field of statistical computing and graphics. This program is mainly used by Statisticians and Data Analysts.Pin
In this r programming tutorial/post we are discussing R Command to check if an R file exists in the directory.
Why:
Though Operating systems will have simpler way of doing this however when you are working in the programming environment having the ability to use the commands for creating or manipulating the files is always useful.
How to check if a file exists in the directory using R Command:
Step 1: If you do not know your active directory check the same using the below command.
getwd()
Step 2: Use the below r command to check if the file exists in your current directory
file.exists(“myFile.R“)
**replace the “myFile” with your actual file name.
Note: Make sure you are using the commands after the ‘>’ symbol
One Response
thanks!