[Solved] Conflict: different libraries, classes with the same name

Hello,
I need the "SD.h" and "SdFile.h" libraries, but generate a conflict because both include "File" class. How I can fix this?

This is the error:

In file included from solarimetroArduinoSdFtp.ino:4:
C:\Program Files\Arduino\libraries\SD/SD.h:26: error: redefinition of 'class File'
C:\Users\Nacho\Documents\Arduino\libraries\SdFat/SdFile.h:131: error: previous definition of 'class File'

Help me please

I need the "SD.h" and "SdFile.h" libraries, but generate a conflict because both include "File" class. How I can fix this?

You don't need both. They operate on the same piece of hardware. Determine which ONE you are going to use.

Thank you! I'm too new :sweat_smile: