View source: R/raw.findFiles.R
raw.findFiles | R Documentation |
returns a list of files provided the search criteria
raw.findFiles(
pfad,
project = "[^_]+",
date = "[^_]+",
user = "[^_]+",
instrument = "[^_]+",
sample = "[^_]+",
md5 = "",
fullPath = TRUE,
recursive = FALSE
)
pfad |
path of RAW files |
project |
name of project |
date |
date in format YYYYMMDD |
user |
2 initials for user |
instrument |
name of instrument, such as 'vsm' |
sample |
sample name |
md5 |
single string with comma separated abbreviated MD5 sums |
fullPath |
if |
recursive |
if |
list with filenames with certain checksum
pfad = raw.getSamplePath()
file.list = raw.findFiles(pfad, date='201606') # all files from June 2019
print(basename(file.list))
md5String = raw.getMD5str(file.list)
file.list = raw.findFiles(pfad, md5 = md5String)
print(basename(file.list))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.