You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On lines 98-107 of server.R probably best to change paste(path, list_of_files[a], sep="\\") within the three read functions to: file.path(path, list_of_files[a]), to make the functions platform-independent (as only Windows uses backslashes).
(sorry could have forked and commited etc., but seemed like too much effort as now everything works for me haha).
The text was updated successfully, but these errors were encountered:
On lines 98-107 of server.R probably best to change
paste(path, list_of_files[a], sep="\\")
within the three read functions to:file.path(path, list_of_files[a])
, to make the functions platform-independent (as only Windows uses backslashes).(sorry could have forked and commited etc., but seemed like too much effort as now everything works for me haha).
The text was updated successfully, but these errors were encountered: