Learn R Programming

berryFunctions (version 1.17.0)

compareFiles: Compare textfiles for equality

Description

Returns the line numbers where two (text)files differ

Usage

compareFiles(file1, file2, nr = 20, startline = 1, endline = length(f1),
  quiet = FALSE, ...)

Arguments

file1, file2

Filenames to be read by readLines.

nr

number of results printed. DEFAULT: 20

startline, endline

start and end lines, e.g. to exclude section that is already compared.

quiet

show warnings about file lengths? DEFAULT: FALSE

further arguments passed to readLines

Value

Vector of line numbers that differ, result from head(..., nr)

See Also

http://text-compare.com/ which I sadly only discovered after writing this function, dupes for finding duplicate lines, combineFiles

Examples

Run this code
# NOT RUN {
filenames <- system.file(paste0("extdata/versuch",1:2,".txt"), package="berryFunctions")
compareFiles(filenames[1], filenames[2], warn=FALSE)

# }

Run the code above in your browser using DataLab