In Reference to this android file download problem
http://stackoverflow.com/questions/576513/android-download-binary-file-problems
Can anyone explain what does this line mean in the code
FileOutputStream f = new FileOutputStream(new File(root,"Video.mp4"));
And what does it mean by the parameter root within the File(). Do I need to specify the root path to save the file? if it is the case then how do we specify the root path in android ?
Regards