Basically I have right clicked on my project name and successfully created a new folder called pdfs. I want to pre load some pdf files in here so how would I call this path/some
Its better to place them in assets/ folder, that way you will be able to access them with AssetManager. Something like this
AssetManager assetManager = getAssets();
InputStream in = null;
OutputStream out = null;
File file = new File(getFilesDir(), "name_of_pdf_file.pdf");
try
{
in = assetManager.open("name_of_pdf_file.pdf");
in.close();
in = null;
} catch (Exception e)
{
Log.e("tag", e.getMessage());
}