# This example serves all your files in /etc (on UNIX and Mac only).
#
# Note that when you open the application, you will see the word
# 'Forbidden'. "File" doesn't serve directories, so you must amend the
# url in the location bar with the file you want to view. Try adding /passwd.
s <- Rhttpd$new()
if (FALSE) {
s$start(quiet=TRUE)
}
s$add(name="etc",app=File$new('/etc'))
if (FALSE) {
s$browse('etc') # Opens a browser window to the app.
}
s$remove(all=TRUE)
rm(s)
Run the code above in your browser using DataLab