R/listFolders.R

Defines functions listFolders

listFolders <-
function(folder,full = TRUE,pattern = NULL,rec = F){
	temp.files 	<- file.info(list.files(folder,full.name = full,pattern = pattern,recursive = rec))

	temp.files 	<- rownames(temp.files)[temp.files$isdir]
}

Try the mqqc package in your browser

Any scripts or data that you put into this service are public.

mqqc documentation built on July 30, 2020, 3 p.m.