DEV Community

Luke K Locust Jr
Luke K Locust Jr

Posted on

Testing Pi Logic integrations.

fun invertBinaryFile(inputFilePath: String, outputFilePath: String) {
val inputFile = File(inputFilePath)
val outputFile = File(outputFilePath)

inputFile.inputStream().use { inputStream ->
    outputFile.outputStream().use { outputStream ->
        val buffer = ByteArray(1024)
        var bytesRead: Int
        while (inputStream.read(buffer).also { bytesRead = it } != -1) {
            val invertedBuffer = buffer.map { it.inv() }.toByteArray() // Bitwise NOT
            outputStream.write(invertedBuffer, 0, bytesRead)
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

}

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more