I need the name (String) of all files in res/raw/
I tried:
File f = new File(\"/\");
String[] someFiles = f.list();
It looks like
I need the name (String) of all files in res/raw/
There are no files in res/raw/ on the device. Those are resources. There is no good way to iterate over resources, other than by using reflection to iterate over the static data members of the R.raw class to get the various ID names and values.
but doesn't really help me find out where the raw folder exists.
As a folder, it only exists on your development machine. It is not a folder on the device.