Displaying 1 result from an estimated 1 matches for "postnames".
Did you mean:
hostnames
2013 Sep 04
4
Comments requested on "changedFiles" function
...shot$full.names
pre <- snapshot$pre
savewd <- getwd()
on.exit(setwd(savewd))
setwd(snapshot$wd)
args <- snapshot$args
newargs <- list(...)
args[names(newargs)] <- newargs
post <- dosnapshot(args)$info
prenames <- rownames(pre)
postnames <- rownames(post)
added <- setdiff(postnames, prenames)
deleted <- setdiff(prenames, postnames)
common <- intersect(prenames, postnames)
if (length(file.info)) {
preinfo <- pre[common, file.info]
postinfo <- post[common, file.info]...