Forum Discussion

Chi's avatar
Chi
Occasional Contributor
8 years ago

WinXP: Unable to obtain version information from the file. The file is too large

 

Hi,

 

I'm getting this error "Unable to obtain version information from the file. The file is too large" when I obtain the VersionInfo property for a file in a Windows XP Pro SP3 (32-bit) virtual machine. It occurs in the last line of code below. It does not happen in Windows 7, 8.1 or 10. The file is roughly 650MB. Any ideas?

 

var foundFiles = aqFileSystem.FindFiles("..\\Folder\\", "Filename*.exe");
if (foundFiles != null)
{
   var file = foundFiles.Next();
   var versionInfo = file.VersionInfo;
}

No RepliesBe the first to reply