Hello All,
I am trying to execute a shell command in Xojo. On the command line it works.
./photo /Users/gb/Pictures/birds/ test2.usdz
On Xojo I tried this code.
cmd ="/Users/gb/Pictures/photo /Users/gb/Pictures/birds/ test2.usdz"
sh.execute(cmd)
./photo is the program I am executing, the second parameter is the full path to a directory with bird images, the last parameter is the output name of the file that will be created.
Thanks All