IonicWind Software

IWBasic => General Questions => Topic started by: oneplace2u on January 19, 2009, 04:24:54 PM

Title: Path location
Post by: oneplace2u on January 19, 2009, 04:24:54 PM

I have use this in ibasic and it works fine

openfile(myfile,"c:\basic-file\" + fileband$ + ".txt", "W")

Is there another way in Emergence Basic
Title: Re: Path location
Post by: Ionic Wind Support Team on January 19, 2009, 04:35:59 PM
You need to use \\ if you want a slash.

openfile(myfile,"c:\\basic-file\\" + fileband$ + ".txt", "W")

See the users guide.

http://www.ionicwind.com/guides/emergence/language_topics_constants_and_literals.htm

Section "String Literals"