I created an R dataframe and saved it to an RData file. Then I load the RData file but I get error message permission denied. How can this be?
I have been running this for a long time but we migrated to a new server, now this is suddenly a problem
> save(digital_fill,file="//cnd1/database/Mather Historical Engagement/nd_data_dates105.RData")
>
> load(file="//cnd1/database/Mather Historical Engagement/nd_data_dates105.RData")
Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection
In addition: Warning message:
In readChar(con, 5L, useBytes = TRUE) :
cannot open compressed file '//cnd1/database/Mather Historical Engagement/nd_data_dates105.RData', probable reason 'Permission denied'
>
but
> save(pcodes,file="//cnd1/database/Mather Historical Engagement/pcodes.RData")
> load(file="//cnd1/database/Mather Historical Engagement/pcodes.RData")
>