tags:

views:

181

answers:

2

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?

+3  A: 

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();
John Knoeller
thanks, didn't thought of that
Sandu
A: 

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

Quazistax