fs
fs copied to clipboard
Provide cross platform file operations based on libuv.
I am writing a quarto book on data management, and I need to show a certain directory structure. The easiest way of course is to create this structure and then...
It seems like `fs::is_file('/opt/homebrew/bin/python3')` hangs on Mac with homebrew python installed. This doesn't seem to be a Mac specific bug because I was able to reproduce it by recreating the...
``` r cat("babana",file = "ici.txt") file.info("ici.txt") #> size isdir mode mtime ctime #> ici.txt 6 FALSE 664 2022-12-06 16:44:31 2022-12-06 16:44:31 #> atime uid gid uname grname #> ici.txt 2022-12-06...
** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location Error: package or namespace load failed for 'fs' in dyn.load(file, DLLpath =...
Hi, I was using `fs::path_rel` inside my own function. I gave my function multiple paths as an argument which was then handed on to `path_rel` as multiple paths for its...
See https://github.com/r-lib/vctrs/issues/1806 I think we'd need to move away from using the "union" type of `` in favor of explicitly handling integer and double separately. Like here, where we'd `as.double()`...
I stumbled over this when using `path_has_parent()` with a path from `dir_ls()`. ``` r fs::path_has_parent("~/GitHub", "~/") #> [1] TRUE fs::path_has_parent("~/GitHub", fs::path_expand("~/")) #> [1] FALSE ``` Created on 2023-04-04 with [reprex...