I cannot create a folder in android External Storage Directory.
I have added permissing on manifest,
Try adding
FPath.mkdirs(); (See http://developer.android.com/reference/java/io/File.html)
and then just save the file as needed to that path, Android OS will create all the directories needed. You don't need to do the exists checks, just set that flag and save. (Also see : How to create directory automatically on SD card