Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
x = as.data.frame(seq(1:100))
pbFilename <- file.path(getwd(), "reproduceBug.feather")
arrow::write_feather(x = x, sink = pbFilename)
file.exists(pbFilename)
file.remove(pbFilename)
arrow::write_feather(x = x, sink = pbFilename)
tempDX <- arrow::read_feather(file = pbFilename, as_data_frame = T)
file.exists(pbFilename)
file.remove(pbFilename)
>Warning message:
>In file.remove(pbFilename) :
>cannot remove file 'C:/Martin/Repo/ReinforcementLearner/reproduceBug.feather', reason
> 'Permission denied'