Skip to content Skip to sidebar Skip to footer

Android: No Such File Or Directory Found Error?

I'm playing and recording an audio simultaneously in order to perform audio matching analysis using musicg API. I'm getting the following error/s everytime I run my app: V/playReco

Solution 1:

I think the problem is in copyWaveFile():

You are sending mFileName variable to copyWaveFile() but changing its path using following code:

outFilename = Environment.getExternalStorageDirectory().getPath();

Try removing above line and check once again. Let me know if same error persists.

Post a Comment for "Android: No Such File Or Directory Found Error?"