07-14-2022 05:48 AM
there must be a mistake somewhere ... if i run the vi using the binary blocks... the original zip file is 12 Mb and the re-builded one is 1byte... I think I'm not reading the original zip file properly.
07-14-2022 06:03 AM
The binary read function has a 'count' input that defaults to a count of 1 byte when you leave it unwired. Instead, wire in the special value -1 to read the entire contents all at once.
(See the function's online "Detailed Help" for more info. I would recommend it as a good habit to also define the 'data type' input, even though it defaults to string which is what you happen to want this time. This will provide greater clarity for anyone who uses or copies this code in the future, including your own future self.).
-Kevin P
07-14-2022 06:30 AM
07-14-2022 07:47 AM
thats' the key!
now it's working!