HI Nir, Thanks for the time
Sorry may be I did not understand your solutions.
Can you guide me here. When I deploy this in Rstudio connect server how can I access my log or download my log?
The reason why I gave this example, is I have something in mind, that is I want to create a empty file file.create("test.txt") . So I am planning to put this code in my server.R file. SAmple below. Hope this makes more sense. In short it would be helpful if you could let me know where and how can i access this empty file in my Rstudio connect server
server.R
library(shiny)
# Define server logic required to draw a histogram
shinyServer(function(input, output) {
output$greeting <- renderText({
paste0("Hello, ", input$name, "!")
})
# print(getwd())
file.create("test1.txt") # I am creating a file. But where this would be located when I deploy this in RStudio connect server
})