How to open a pdf file from streaming assets folder?

Here is my issue.
I try my best to open a Pdf file from the streaming asset folder but,Android or Unity doesn’t find the path and the file.
Here is the code I use: _path =“file://” + Application.dataPath + “!/assets/StreamingAssets/PDFs/Myfile.pdf” ;

I only succeed reading the file with an ‘OpenURL’ function when the file is stored on the SdCard of my device.

How can i read the file from the streamingAssets folder of the Apk?

Any help would be great.

I visited the page of Unity still unable to understand how to display a pdf that is in the assets folder, someone could help me with an example?

@ Lordrss

Hi, the only way to open pdf on PC and MAC that works for my project is:

Process.Start(“file://” + Application.streamingAssetsPath + "nameOfYourPDF);

Don’t forget to add:
“using System.Diagnostics;” at the beginning of your C# code.