Monday, September 17, 2018

The file is too long. This operation is currently limited to supporting files less than 2 gigabytes in size.

This error rears its head when you'd expect in C#. I got it from the following code.

public Byte[] SimpleRead(string fromPath)
{
   return File.ReadAllBytes(fromPath);
}

No comments:

Post a Comment