B4J Question Shell on Mac will not open file location

Nokia

Active Member
Licensed User
Longtime User
I have notice if you use the Shell with Open command that it will not open the file location if it has spaces in it..

how ever it does work if I use an _ or no spaces.

does not work:
B4X:
    Dim shl As Shell
     shl.Initialize("shl", "Open", Array As String (/Files/SpiterNet Solutions/MacTest/))
     shl.WorkingDirectory = Location
     shl.Run(1000)

works:
B4X:
    Dim shl As Shell
     shl.Initialize("shl", "Open", Array As String (/Files/SpiterNet_Solutions/MacTest/))
     shl.WorkingDirectory = Location
     shl.Run(1000)

Is there a way to make this work even if the file name has spaces?
 
Top