R/list.files.nodir.R

Defines functions list.files.nodir

list.files.nodir <- 
function(path = ".",pattern = NULL)
{
	tempx <- list.files(path,pattern)
	try(tempx <- tempx[!file.info(tempx)$isdir])
	return(tempx)
	
}

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.