Java tutorial
//package com.java2s; //License from project: Open Source License import android.os.Environment; import java.io.File; public class Main { /** * @return Directory for file storage while downloading */ public static File getPath() { File dir = new File(Environment.getExternalStorageDirectory() + "/Videos"); if (!dir.exists()) { dir.mkdir(); } return dir; } }