Why doesn't this code append to an existing file? It appears to be overwriting it:
So, whenever I tell it to display each line from the file, it only displays one line like it is not appending, just overwriting.
B4X:
File.OpenOutput(File.DirLibrary, "History.txt", True)
File.WriteString(File.DirLibrary, "History.txt", url)
So, whenever I tell it to display each line from the file, it only displays one line like it is not appending, just overwriting.