I have a csv file that I have written to the notebook filesystem:
# read csv from object storage
df = read.csv2( ... )
# do some operations ...
# save new csv to notebook filesystem
file.remove('example.csv')
write.csv(df, file = "example.csv")
How can I copy this file to the project's cloud object storage?
This worked for me: