Use setwd
for a working directory in your environment and set the parameters according to your data correctly e.g.:
# --- set working directory ----
setwd("D:/Data/R-Studio/develop/data-develop/maps")
gauge.data <- read.table("gauge-WSP.txt", header=TRUE,
sep="\t", na.strings="NA", dec=".", strip.white=TRUE,
stringsAsFactors = FALSE)
gauge.data
The gauge data here are separated with tabs and have some NA
's as an example.
If you meant with your question "import some files simultaneously rather than having to import them all individually" have alook at How to import multiple .csv files at once?.
This assumes that you have your files in a single directory - the current working directory - (see above) and that all of them have an extension.