M
Mike John
I want to write to text file, the follow text " My Name Is
mike"
Now, I have used the following sysntax:
dim strFilePath as string = "C:\"
dim strFileName as string = "MyFile.txt"
fileopen(1,strfilepath & "\" & strfilename,output)
write(1," My Name Is mike")
fileclose(1)
now, assum that the filepath is a folder that I am ftp to
it. for example : ftp:\\www.mysite.com\myfolder.
now, how can I open the file to write to in the myfolder
folder instead of the C Drive.
Sincerely yours
Mike John
mike"
Now, I have used the following sysntax:
dim strFilePath as string = "C:\"
dim strFileName as string = "MyFile.txt"
fileopen(1,strfilepath & "\" & strfilename,output)
write(1," My Name Is mike")
fileclose(1)
now, assum that the filepath is a folder that I am ftp to
it. for example : ftp:\\www.mysite.com\myfolder.
now, how can I open the file to write to in the myfolder
folder instead of the C Drive.
Sincerely yours
Mike John