I've searched the forum but couldn't find how to open a new OS window to a directory. Here's what I've tried:
I've also tried "Start" as the Executable string in shell.Initialize.
B4X:
Private Sub btn_OpenFolder_Click
'open the project folder
Log("Opening the project folder: " & current_project_folder)
shell.Initialize("shell","Open",Array(current_project_folder))
shell.WorkingDirectory = current_project_folder
shell.Run(-1)
End Sub
I've also tried "Start" as the Executable string in shell.Initialize.