file_w_date: Create File path with Today's Date appended

View source: R/file_w_date.R

file_w_dateR Documentation

Create File path with Today's Date appended

Description

used to paste strings together for file location. Primary usage is for long directory names that you can store in a string, as well as for automatically appending the date to a file name for intermittenly run reports/etc.

Usage

file_w_date(dir, file, ext, date = T)

Arguments

dir

path to directory

file

filename

ext

extension type

date

logical for Y/N appended date

Value

Character String with the path to filename

Examples

file_w_date("C:/Documents", "Test", "csv")
data(mtcars)
DataEx = head(mtcars)
write.csv(DataEx, file_w_date("C:/Documents", "Test", "csv"))
write.csv(DataEx, file_w_date("C:/Documents", "Test", "csv", date = F))

Ajfrick/ajfhelpR documentation built on June 30, 2023, 12:56 a.m.