Rename files and/or directories using a syntactic naming function
Source:R/rename.R
syntacticRename.Rd
Rename files and/or directories using a syntactic naming function
Usage
syntacticRename(
path,
recursive = FALSE,
fun = c("kebabCase", "snakeCase", "camelCase", "upperCamelCase"),
quiet = FALSE,
dryRun = FALSE
)
Details
Intelligently deals with a case-insensitive file system, if necessary. This is very useful for macOS and Windows.
Our syntactic naming functions can result in changes that only differ in case, which are problematic on case-insensitive mounts, and require movement of the files into a temporary file name before the final rename.
Examples
testdir <- AcidBase::tempdir2()
from <- file.path(testdir, c("helloWorld.txt", "fooBar.R"))
file.create(from)
#> [1] TRUE TRUE
print(basename(from))
#> [1] "helloWorld.txt" "fooBar.R"
output <- syntacticRename(from)
#> → Renaming /private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/helloWorld.txt to /private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/helloworld.txt.
#> → Renaming /private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/fooBar.R to /private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/foobar.R.
print(output)
#> $from
#> [1] "/private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/helloWorld.txt"
#> [2] "/private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/fooBar.R"
#>
#> $to
#> [1] "/private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/helloworld.txt"
#> [2] "/private/var/folders/9b/4gh0pghx1b71jjd0wjh5mj880000gn/T/Rtmp95Iio0/sWLklu4eD5-174282369793455/foobar.R"
#>
AcidBase::unlink2(testdir)