commons-io
commons-io copied to clipboard
Apache Commons IO
pull request for ticket: https://issues.apache.org/jira/browse/IO-543 - Added getFilePointer and seek API to ReversedLinesFileReader - Added new JUnit tests (ReversedLinesFileReaderTestRandomAccess)
# Security Vulnerability Fix This pull request fixes a partial-path traversal vulnerability due to an insufficient path traversal guard. Even if you deem, as the maintainer of this project, this...
refine IOUtils.contentEquals(Reader, Reader) from simply wrapped by BufferedReader to something better.
It makes no sense to duplicate code, like the sleep method, just to keep the interface private.
This pull request is meant to address https://issues.apache.org/jira/projects/IO/issues/IO-552 by treating tilde ~ as a valid character for file and directory names. https://issues.apache.org/jira/projects/IO/issues/IO-552
This PR removes some redundant methods from IOUtils, specifically those which use String and StringBuffer, as the same methods that accept CharSequence as a parameter exist, and it is the...
Commons IO/IO-373 https://issues.apache.org/jira/browse/IO-373
This pull request chains together IOExceptions thrown from closing multiple Closeable instances, which allows the method to attempt to close all of the Closeable instances rather than halting at the...