Error code

Windows ERROR_TOO_MANY_OPEN_FILES

WINDOWSERROR_TOO_MANY_OPEN_FILES
System Error Code· A POSIX/system errno returned when a system call fails.

What it means

The system cannot open the file..

How to fix it

  1. Close file handles the application no longer needs.
  2. check for a handle leak in the program.
  3. restart the offending process to release its handles.
  4. increase the per-process handle limit if the workload legitimately needs it.

Not affiliated with Windows. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.