File path = new File("/sdcard/okc");
        File file = new File("/sdcard/okc/save.txt");
        if (!path.exists()){
            path.mkdirs();
        }
        if (!file.exists()){
            file.createNewFile();
        }