fAddDate | R Documentation |
Add today's date to the filename
fAddDate(..., format = "%d-%b-%Y")
... |
file name or path to concat |
format |
time format e.g. %d-%b-%Y , refer to |
The present function enables users to add the current date to the file name, facilitating the straightforward saving of files with their respective dates. It accepts different file paths and names as arguments, as demonstrated in the example section. This functionality simplifies the process of associating a file's creation date with its name, aiding users in recalling when a file was saved. Moreover, it serves as a preventive measure against unintentional overwriting of files created on different dates.
file name with the current date added as suffix
# Task 1
fAddDate("path1/","path2/filepre","filemid","fileend.png")
# Task 2
fAddDate(c("path1/","path2/"),"filepre","filemid","fileend.png")
# Task 3
fAddDate("one_file_name_fileend.pdf")
# Task 4
fAddDate(c("path1/","path2/"),"file1-","filemid",c("fileend.png",".pdf"))
# Task 5
data("USArrests")
USArrests$fn = paste0(row.names(USArrests), ".txt")
head(fAddDate(USArrests$fn),10)
# Task 6: format date - month.day.year
fAddDate("sample_file_name.pdf", format = "%B.%d.%YYYY")
# Task 7: format date - year_month
fAddDate("sample_file_name.pdf", format = "%YYYY_%m")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.