Marek Szatkowski

Results 6 issues of Marek Szatkowski

Two dots before file extension break `path_ext`: ```{r} path_ext("file..ext") # [1] "" ```

bug

`dataValidation(type = "list")` generates warning warning because of redundant argument to `sprintf`: https://github.com/ycphs/openxlsx/blob/d8c8209a42b7ec58e0066ccba9ea8a748ad77f16/R/WorkbookClass.R#:~:text=data_val%20%3C%2D%20sprintf(%27%3Cx14,showInputMsg%2C%20showErrorMsg%2C%20sqref) Instead of ```{r} data_val

fixed

I ran into a weird parsing case. I use yaml files to hold file paths (which are parameters to later computations). In a rare case the path could have hash...

I notice that in fresh session first use of `read_fst` is slower than next uses. The same file. The same number of cores. Just running the same command again. RStudio...

Currently `dir_copy` uses `dir_create` internally to create destination folder. But it uses default permissions (default value of `mode` argument which is `"u=rwx,go=rx"`). Shouldn't it copy the permissions from the original...

bug
feature

I ran into strange behavior with `file_copy`. When another user with the same group create file (with `rw-rw-rw-` permissions) then ```r library(fs) file_info("tmp-tst-copy.txt")$permissions # rw-rw-rw- file_access("tmp-tst-copy.txt", "write") # TRUE file_copy("tmp-tst-origin.txt",...