Application.CaptureScreenshot will save a image in device.I want to change the default file path.any one can tell me how to Implement It?thank you advance!
The scripting reference of Application.CaptureScreenshot pretty much says it all.
The given path is appended to the application’s persistent data-path.
So you can put it in a sub-directory by using a file name like “MyFolder/MyImageName.png”
You could try to go to another folder (I mean not a subFolder of you app’s persistent datapath, but somewhere else) by using “…/MyFolder/MyImageName.png”, which logically would put the MyFolder nex to your persistent data-path. But I’m not sure if it is supported on mobile platforms nor if mobile platforms would allow you to write anywhere you want.