Solution 3: Telling a UNIX System What to Do
Let’s solve the challenges set in the previous lesson.
We'll cover the following...
Solution 1
Here is the modified embedFiles.go
code, which saves the binary file at a user-selected location.
embedFiles.go
Code explanation
Lines 15–28: The
writeToFile
function has been modified to use the provided path instead of the hardcoded/tmp/temporary.png
, and the program prints the output file path in its message.Lines 40–45: If the user selects option
"1"
, the program will expect a second argument specifying the output file path.Lines 53–54: If no ...