How do I write to an opened file in vb.net
I'm using this function right now
My.Computer.FileSystem.WriteAllText(filepath, createString(), True)
However, if the file is opened, it will give an error saying that the file is being used by another process. It works if the file is closed.
So how do i update the file content while it is open? The file need to be written while its open.