John R
John R

Reputation: 113

Delete last N bytes from file

There's a file on disk which can be very large. Is there any way to delete the last N bytes from it without copying the remaining content to another file?

Upvotes: 11

Views: 6205

Answers (2)

user305454
user305454

Reputation:

Additionally, if you want to add or remove bytes at any position: Insert, delete space at any place in file without making temporary file copy

Upvotes: 2

John Knoeller
John Knoeller

Reputation: 34148

How about this fragment of C# .NET code?

FileInfo fi = new FileInfo("filename");
FileStream fs = fi.Open(FileMode.Open);

long bytesToDelete = 5000;
fs.SetLength (Math.Max(0, fi.Length - bytesToDelete));

fs.Close();

Upvotes: 18

Related Questions