I am uncertain of the best practice for writing the "\" paths in filenames.
For example, when I have a sub folder, I usually use this, which works for me...
n& = _SNDOPEN("notes\note1.wav")
But I see often this way, with a ".\" added....
n& = _SNDOPEN(".\notes\note1.wav")
Does it differ on OS? Which is the best way
- Dav