Also, as a simpler alternative, what you can do instead is after saving the image to the user’s “Pictures” directory, you can show them that directory in Windows Explorer by doing the following in Lua…
if (system.getInfo("platformName") == "Win") then local appName = "Corona Simulator" if (system.getInfo("environment") == "device") then appName = tostring(system.getInfo("appName")) end system.openURL("shell:My Pictures\\" .. appName) end
Just note that the above will only work on Windows for both the Corona Simulator and your Win32 app. It uses Microsoft’s “shell:” URL scheme to display their Pictures directory in Windows Explorer.