pdfファイルをSDカードに保存するためにこのコードを作成しましたが、保存されたファイルがあるディレクトリを/sdcard/から/sdcard/MYDIR/に変更したいと思います。
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// getting file length
int lenghtOfFile = conection.getContentLength();
// input stream to read file - with 8k buffer
InputStream input = new BufferedInputStream(url.openStream(), 8192);
// Output stream to write file
OutputStream output = new FileOutputStream("/sdcard/yes.pdf");