Hello to evry one.
After week of serching, I found how to open assets folder, when pressing the button in game. And this shows the spesific folder like on pix
But i need to open the subfolder and show only jpg or video files.
This is my code:
string m_Path;
public void OpenPix(){
//Get the path of the Game data folder
m_Path = Application.dataPath;
//Output the Game data path to the console
Debug.Log("Path : " + m_Path);
EditorUtility.RevealInFinder(m_Path + ".../Video");
}
Thanks for your help.