System.Shell.ChooseFile(..)

Hi all

I used System.Shell.ChooseFile(..) and the open dialog is opened, but i need to get the path that was chosen so i used System.Shell.Item.Path but it didn't work, any help



Answer this question

System.Shell.ChooseFile(..)

  • incendy

    var oItem = System.Shell.chooseFile(true, "All Files:*.*::", "", "");
    var filePath = oItem.path;


  • System.Shell.ChooseFile(..)