Open subfolder in explorer

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.

Hi,

Check out this link

Hope that helps. Also one of my older projects needed the file explorer. I ended up using this

I found the solution.
Here the code that Works for me

     var path = Application.dataPath + "/StreamingAssets/Video";
        Application.OpenURL(path); //Open the folder in explorer

Dont’t forget to make subfolder with StreamingAssets name. This folder Unity dosen’t close.