02-08-2026, 06:06 PM
(02-08-2026, 05:46 PM)SMcNeill Wrote:It's a bit of a pita but for stuff like that I use(02-08-2026, 03:02 PM)Magdha Wrote: @SMcNeill Thanks Steve. On my system it doesn't seem to matter which is used.
Note that it may matter if you use SHELL or other system type calls that aren't handled internally by QB64PE. Same with DECLARE LIBRARY calls and such. If you're using things outside of vanilla QB64, then you may have issues with / vs \, but in QB64 it usually doesn't matter.
Code: (Select All)
DIM SHARED SLASH$
$IF WINDOWS THEN
SLASH$ = "\"
$ELSE
SLASH$ = "/"
$END IF
Then I make sure I build my Command strings for shell or file paths with the SLASH$ variable !

