Learn R Programming

⚠️There's a newer version (1.6.6) of this package.Take me there.

fs

fs provides a cross-platform, uniform interface to file system operations. It shares the same back-end component as nodejs, the libuv C library, which brings the benefit of extensive real-world use and rigorous cross-platform testing. The name, and some of the interface, is partially inspired by Rust’s fs module.

Installation

You can install the released version of fs from CRAN with:

install.packages("fs")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("r-lib/fs")

Comparison vs base equivalents

fs functions smooth over some of the idiosyncrasies of file handling with base R functions:

  • Vectorization. All fs functions are vectorized, accepting multiple paths as input. Base functions are inconsistently vectorized.

  • Predictable return values that always convey a path. All fs functions return a character vector of paths, a named integer or a logical vector, where the names give the paths. Base return values are more varied: they are often logical or contain error codes which require downstream processing.

  • Explicit failure. If fs operations fail, they throw an error. Base functions tend to generate a warning and a system dependent error code. This makes it easy to miss a failure.

  • UTF-8 all the things. fs functions always convert input paths to UTF-8 and return results as UTF-8. This gives you path encoding consistency across OSes. Base functions rely on the native system encoding.

  • Naming convention. fs functions use a consistent naming convention. Because base R’s functions were gradually added over time there are a number of different conventions used (e.g. path.expand() vs normalizePath(); Sys.chmod() vs file.access()).

Tidy paths

fs functions always return ‘tidy’ paths. Tidy paths

  • Always use / to delimit directories
  • never have multiple / or trailing /

Tidy paths are also coloured (if your terminal supports it) based on the file permissions and file type. This colouring can be customized or extended by setting the LS_COLORS environment variable, in the same output format as GNU dircolors.

Usage

fs functions are divided into four main categories:

  • path_ for manipulating and constructing paths
  • file_ for files
  • dir_ for directories
  • link_ for links

Directories and links are special types of files, so file_ functions will generally also work when applied to a directory or link.

library(fs)

# Construct a path to a file with `path()`
path("foo", "bar", letters[1:3], ext = "txt")
#> foo/bar/a.txt foo/bar/b.txt foo/bar/c.txt

# list files in the current directory
dir_ls()
#> DESCRIPTION      LICENSE          LICENSE.md       MAINTENANCE.md   
#> NAMESPACE        NEWS.md          R                README.Rmd       
#> README.md        _pkgdown.yml     codecov.yml      cran-comments.md 
#> fs.Rproj         inst             man              man-roxygen      
#> revdep           src              tests            vignettes

# create a new directory
tmp <- dir_create(file_temp())
tmp
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file553519e91baa

# create new files in that directory
file_create(path(tmp, "my-file.txt"))
dir_ls(tmp)
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file553519e91baa/my-file.txt

# remove files from the directory
file_delete(path(tmp, "my-file.txt"))
dir_ls(tmp)
#> character(0)

# remove the directory
dir_delete(tmp)

fs is designed to work well with the pipe, though because it is a minimal-dependency infrastructure package it doesn’t provide the pipe itself. You will need to attach magrittr or similar.

library(magrittr)

paths <- file_temp() %>%
  dir_create() %>%
  path(letters[1:5]) %>%
  file_create()
paths
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file5535783c1027/a
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file5535783c1027/b
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file5535783c1027/c
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file5535783c1027/d
#> /var/folders/9x/_8jnmxwj3rq1t90mlr6_0k1w0000gn/T/Rtmp8qNYF8/file5535783c1027/e

paths %>% file_delete()

fs functions also work well in conjunction with other tidyverse packages, like dplyr and purrr.

Some examples…

suppressMessages(
  library(tidyverse))

Filter files by type, permission and size

dir_info("src", recurse = FALSE) %>%
  filter(type == "file", permissions == "u+r", size > "10KB") %>%
  arrange(desc(size)) %>%
  select(path, permissions, size, modification_time)
#> # A tibble: 12 × 4
#>    path          permissions        size modification_time  
#>    <fs::path>    <fs::perms> <fs::bytes> <dttm>             
#>  1 src/fs.so     rwxr-xr-x        267.7K 2021-11-29 17:54:31
#>  2 src/id.o      rw-r--r--        159.2K 2021-11-29 17:54:10
#>  3 src/dir.o     rw-r--r--         96.7K 2021-11-29 17:54:10
#>  4 src/path.o    rw-r--r--         94.2K 2021-11-29 17:54:10
#>  5 src/link.o    rw-r--r--           76K 2021-11-29 17:54:10
#>  6 src/utils.o   rw-r--r--         75.1K 2021-11-29 17:54:10
#>  7 src/getmode.o rw-r--r--           67K 2021-11-29 17:54:10
#>  8 src/file.o    rw-r--r--         61.5K 2021-11-29 17:54:10
#>  9 src/error.o   rw-r--r--         19.8K 2021-11-29 17:54:10
#> 10 src/init.o    rw-r--r--         17.3K 2021-11-29 17:54:10
#> 11 src/fs.o      rw-r--r--         12.1K 2021-11-29 17:54:10
#> 12 src/file.cc   rw-r--r--         11.5K 2021-11-29 17:54:06

Tabulate and display folder size.

dir_info("src", recurse = TRUE) %>%
  group_by(directory = path_dir(path)) %>%
  tally(wt = size, sort = TRUE)
#> # A tibble: 11 × 2
#>    directory                             n
#>    <chr>                       <fs::bytes>
#>  1 src/libuv-1.38.1                  2.67M
#>  2 src/libuv-1.38.1/src/unix         1.37M
#>  3 src                              986.5K
#>  4 src/libuv-1.38.1/src/win        729.66K
#>  5 src/libuv-1.38.1/src            329.28K
#>  6 src/libuv-1.38.1/include/uv     138.27K
#>  7 src/libuv-1.38.1/include         64.03K
#>  8 src/unix                         63.43K
#>  9 src/bsd                          20.02K
#> 10 src/windows                       4.73K
#> 11 src/libuv-1.38.1/test                64

Read a collection of files into one data frame.

dir_ls() returns a named vector, so it can be used directly with purrr::map_df(.id).

# Create separate files for each species
iris %>%
  split(.$Species) %>%
  map(select, -Species) %>%
  iwalk(~ write_tsv(.x, paste0(.y, ".tsv")))

# Show the files
iris_files <- dir_ls(glob = "*.tsv")
iris_files
#> setosa.tsv     versicolor.tsv virginica.tsv

# Read the data into a single table, including the filenames
iris_files %>%
  map_df(read_tsv, .id = "file", col_types = cols(), n_max = 2)
#> # A tibble: 6 × 5
#>   file           Sepal.Length Sepal.Width Petal.Length Petal.Width
#>   <chr>                 <dbl>       <dbl>        <dbl>       <dbl>
#> 1 setosa.tsv              5.1         3.5          1.4         0.2
#> 2 setosa.tsv              4.9         3            1.4         0.2
#> 3 versicolor.tsv          7           3.2          4.7         1.4
#> 4 versicolor.tsv          6.4         3.2          4.5         1.5
#> 5 virginica.tsv           6.3         3.3          6           2.5
#> 6 virginica.tsv           5.8         2.7          5.1         1.9

file_delete(iris_files)

Feedback wanted!

We hope fs is a useful tool for both analysis scripts and packages. Please open GitHub issues for any feature requests or bugs.

In particular, we have found non-ASCII filenames in non-English locales on Windows to be especially tricky to reproduce and handle correctly. Feedback from users who use commonly have this situation is greatly appreciated.

Copy Link

Version

Install

install.packages('fs')

Monthly Downloads

1,126,933

Version

1.5.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Gabor Csardi

Last Published

November 30th, 2021

Functions in fs (1.5.1)

create

Create files, directories, or links
file_access

Query for existence and access permissions
file_move

Move or rename files
delete

Delete files, directories, or links
dir_ls

List files
dir_tree

Print contents of directories in a tree-like format
file_chmod

Change file permissions
file_info

Query file metadata
copy

Copy files, directories or links
file_chown

Change owner or group of a file
fs_bytes

Human readable file sizes
file_temp

Create names for temporary files
file_show

Open files or directories
is_file

Functions to test for file types
is_absolute_path

Test if a path is an absolute path
path_math

Path computations
path_filter

Filter paths
path_expand

Finding the User Home Directory
path_file

Manipulate file paths
fs_perms

Create, modify and view file permissions
id

Lookup Users and Groups on a system
path

Construct path to a file or directory
link_path

Read the value of a symbolic link
file_touch

Change file access and modification times
path_sanitize

Sanitize a filename by removing directory paths and invalid characters
path_package

Construct a path to a location within an installed or development package
fs-package

fs: Cross-Platform File System Operations Based on 'libuv'
fs_path

File paths
path_tidy

Tidy paths