How do I write to a specific part of a file, like if I just wanted to replace one line w/o inputting and outputting the entire file?
Printable View
How do I write to a specific part of a file, like if I just wanted to replace one line w/o inputting and outputting the entire file?
You'd have to open it as Binary. And use the Seek function to go to a certain byte position in the file. And use the Put statement to put your text where you want.