If I open the terminal on my Mac and type in the following:
find -b /Users/ME/Desktop/Test/Image.1.tif > /Users/ME/Desktop/Test/myLog.log
it will write "TIFF image data, little-endian" into the myLog.log file.
However when I run the following code in MEL it will only write the name of the file with its full path to the log file. Any thoughts on why that would be???
//CODE:
string $findFile = "/Users/ME/Desktop/Test/Image.1.tif";
string $makeFile = "/Users/ME/Desktop/Test/myLog.log";
system("find -b " + $findFile +" > "+ $makeFile);