I have a text file. How do I go about deleting only the last line in the file using C?
Thanks! John.
|
I have a text file. How do I go about deleting only the last line in the file using C? Thanks! John. |
|||||||||
|
|
Plain ANSI C doesn't provide any standard way to decrease the size of a file - the only way to do this in standard C is to copy the entire file contents to a new file, except for the part you want to omit. Alternatively, you can use OS-specific functions to truncate the file in-place. For example, POSIX provides the The easiest alternative of all, if you have GNU
|
||||
|
|
|
You are correct with the approach. Sacn for newlines, remember the last one and then use hth Mario |
|||
|
|