fs icon indicating copy to clipboard operation
fs copied to clipboard

Provide cross platform file operations based on libuv.

Results 88 fs issues
Sort by recently updated
recently updated
newest added

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

bug

This should work more like the command line e.g. this should work ```{r} fs::dir_ls(glob = "/path/to/file*ext") ``` now you need to use something like ```{r} fs::dir_ls("/path/to", glob = "*file*ext") ```...

feature

I'm trying to install fs as a dependency for many other packages. Whenever I attempt this, I get the following error: ```bash * installing *source* package ‘fs’ ... ** package...

reprex

Fixed a issue #348 by importing the latest config.sub from https://git.savannah.gnu.org/cgit/config.git/plain/config.sub.

Dear fs developers, the function realize_ does not work _in my working environment_ if the path points toward a network drive: ```{r} fs:::realize_('M:/') Error: [EPERM] Failed to realize 'M:/': operation...

bug

As requested a feedback about non ASCII characters in file names under Windows: version 1.5.0 was ok, but last version doesn't read the file names correctly. `> fs::dir_ls("C:/Users/h2izgk/Documents") C:/Users/h2izgk/Documents/Elèves.ods C:/Users/h2izgk/Documents/enquête2.RDS...

bug

https://github.com/r-lib/fs/blob/a615440a7256cc0825f6dc83393269240cbfe71b/inst/COPYRIGHTS#L1-L2 Am I right that this first line is obsolete and should refer to MIT instead?

documentation

Hi! I'm struggling to install `fs` (as a subdependency to the `languageserver` package) on `Darwin Kernel Version 21.1.0: Thu Aug 19 02:54:44 PDT 2021; root:xnu-8019.40.29~26/RELEASE_ARM64_T8101 arm64`. I'm getting the following...

bug

Hi, I am on Windows using `dir_ls()` to walk through all my csv files across various subfolders in a main folder. For example, the base directory for the following example...

reprex

* [x] `usethis::use_pkgdown_github_pages()` * [x] Ensure Author includes RStudio as copyright holder and funder * [x] Update `DESCRIPTION` to include `Config/Needs/website: tidyverse/tidytemplate` * [x] Update `_pkgdown.yml` with appropriate template above....

upkeep