WFU-TLC / flc_discussion_board

A repository for discussing questions and issues in the Data Analysis with R (FLC)
https://wfu-tlc.github.io/
0 stars 0 forks source link

file system manipulation package #15

Open medewitt opened 5 years ago

medewitt commented 5 years ago

As Jerid discussed earlier the fs package can be used to manipulate file system type things.

Example: I need to change nasty file.xlsx to today_date.xlsx in the data and output folders

library(fs)

file_copy("data/nasty file.xlsx", "outputs/today_date.xlsx")

Etc....