stripFileExtension: Strip File Extension

Description Usage Arguments Author(s) References See Also Examples

Description

Strips file extensions.

Usage

1
stripFileExtension(path = ".", include_dir = TRUE, ...)

Arguments

path

Signature argument. Object containing file path/file name information.

include_dir

logical. Dimension: 1. Inlcude directory path (TRUE, default) or not (FALSE).

...

Further arguments passed to subsequent functions/methods. In particular: decomposePath

Author(s)

Janko Thyson janko.thyson@rappster.de

References

https://github.com/Rappster/filesystr

See Also

stripFileExtension-character-method

Examples

 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
## Not run: 

path <- c(
  ".",
  "..",
  "dir_a", 
  "dir_a/",
  "dir_b", 
  "dir_b/sub_1",
  "dir_b/sub_1/file.txt",
  "dir_b/sub_1/file.txt/",
  "dir_b/nonex",
  "dir_b/nonex/",
  "dir_b/nonex/file.txt",
  "nonex",
  "nonex/sub_1",
  "nonex/sub_1/file.txt",
  "nonex/foo.tgz", 
  "another nonex\\file.tar.gz", 
  "a_file", 
  "quux. quuux.tbz2", 
  "~/file.tar.xz",
  "", 
  NA_character_
)
stripFileExtension(path = path)
stripFileExtension(path = path, include_dir = FALSE)
stripFileExtension(path = character())
stripFileExtension()


## End(Not run)

rappster/filesystr documentation built on May 26, 2019, 11:17 p.m.