# NOT RUN {
searchFiles("file like '%keyword%'")
## search for files who contain the word of "keyword"
searchFiles("file like 'keyword%'")
## search for files whose content begin with the word of "keyword"
searchFiles("name like '%keyword'")
## search for files whose name end with the word of "keyword"
searchFiles("name like '%keyword one' and file like '%keyword tow%'")
## combined conditions
# }
Run the code above in your browser using DataLab