-
Notifications
You must be signed in to change notification settings - Fork 7
/
README.Rmd
33 lines (22 loc) · 2.19 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
output: github_document
---
# filesstrings <img src="man/figures/logo.png" align="right" height=140/>
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, comment = "#>")
```
This started out as a package for file and string manipulation. Since then, the `fs` file manipulation package and the `strex string manipulation package emerged, offering functionality previously given by this package (but slightly better). Those packages have hence almost pushed 'filesstrings' into extinction. However, it still has a small number of unique, handy file manipulation functions which can be seen in the [vignette](https://cran.r-project.org/package=filesstrings/vignettes/files.html). One example is a function to remove spaces from all file names in a directory.
[![R-CMD-check](https://github.com/rorynolan/filesstrings/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rorynolan/filesstrings/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/rorynolan/filesstrings/branch/master/graph/badge.svg)](https://app.codecov.io/gh/rorynolan/filesstrings?branch=master)
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![Project Status: Inactive – The project has reached a stable, usable state but is no longer being actively developed; support/maintenance will be provided as time allows.](https://www.repostatus.org/badges/latest/inactive.svg)](https://www.repostatus.org/#inactive)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/filesstrings)](https://cran.r-project.org/package=filesstrings)
![RStudio CRAN downloads](http://cranlogs.r-pkg.org/badges/grand-total/filesstrings)
![RStudio CRAN monthly downloads](http://cranlogs.r-pkg.org/badges/filesstrings)
[![JOSS publication](http://joss.theoj.org/papers/10.21105/joss.00260/status.svg)](https://doi.org/10.21105/joss.00260)
[![DOI](https://zenodo.org/badge/69170704.svg)](https://zenodo.org/badge/latestdoi/69170704)
# Installation
To install the release version of `filesstrings` from [CRAN](https://cran.r-project.org/package=filesstrings), in R, enter
```{r Install filesstrings, eval=FALSE}
install.packages("filesstrings")
```