这是对此的后续问题:(write.csv permisson shiny server - R)。
我正在使用shiny在本地编写.csv文件(闪亮的服务器)。要做到这一点,我必须通过执行以下操作使子目录的所有者闪亮:
sudo chown shiny:shiny /path_to_app/sub_with_csv_in
见:(https://groups.google.com/forum/#!topic/shiny-discuss/srWETT6uL-I)
..工作得很好。现在我要更新保存在" sub_with_csv_in"中的.csv。通过在应用程序外部运行脚本。但是,因为我更改了权限,现在我得到了:
In file(file, ifelse(append, "a", "w")) :
cannot open file 'Available.csv': Permission denied
..当我在闪亮之外运行我的脚本时。所以我的问题是,是否有可能拥有闪亮的自己的目录,同时保持写入闪亮之外的同一目录的权限?