charlotte_dev Posted December 22, 2021 Report Share Posted December 22, 2021 (edited) I would like to read a binary file in a folder within a tarball file (.tar.gz) on labview without extracting the tarball. I have been searching online for OpenG documentation, but I couldn't find much help. Can someone please give me some direction on how I can begin my labview function? Any help is much appreciated. Thank you! Edited December 22, 2021 by charlotte_dev Quote Link to comment
Porter Posted December 22, 2021 Report Share Posted December 22, 2021 Windows 10 now has a built-in tar command. You could extract just that one binary file using a filter in the extract command: tar -xzvf filename.tar.gz <patterns> So for you binary file, it could just be: tar -xzvf filename.tar.gz foldername/binfilename This will extract your binary file next to the tar.gz file. 1 Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.