You can try something along these lines:
var_date = Sys.Date()
var_file_name = paste0("name_of_the_file_", var_date, ".txt")
# "name_of_the_file_2020-10-29.txt"
read.csv(file = var_file_name)
CLICK HERE to find out more related problems solutions.