Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python merge two byte files

with open("binary_file_1", "ab") as myfile, open("binary_file_2", "rb") as file2:
    myfile.write(file2.read())
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #merge #byte #files
ADD COMMENT
Topic
Name
9+5 =