r – Error: ‘\P’ is an unrecognized escape in character string (:1:33)

I am new to r and trying to import multiple csv files into the r studion I was trying to get multiple csv files uploaded and merged into one single year in r studio but keep displaying error message. Below is a sample of the code I used. Thank you.

bike_ride <-list.files(path="C:\Program Files\Microsoft SQL Server\MSSQL15.SQLEXPRESS\MSSQL\Backup\Capstone req. data"
                        pattern = "*.csv", full.names = TRUE) %>% 
  lapply(read_csv) %>%  # Store all files in list
  bind_rows     
Result: Error: '\P' is an unrecognized escape in character string (<input>:1:33)

Read more here: Source link