我在R中使用一个函数,它需要一个名为“yearXXXX”的文件夹(当前年份)来保存输出。
代码看起来像这样(操作系统是macOS):
function (lastday, current_year)
{
system("rsync --remove-source-files -avh year2013 year2013_backup")
system("mkdir year2013")
system("ls temp > foo")
dayfiles <- scan("foo", "")
for (j in 1:length(dayfiles))
{
another function
}
问题是如何使用current_year
参数(例如2013或2014,并且在您想要运行该功能时设置),以根据使用年份设置文件夹名称。
由于