I've recently encountered a problem when trying to combine
\usepackage[french]{babel}
and
\graphicspath{{c:/Users/...}}
A problem then appears when I try to use \includegraphics (although it perfectly works when french is not selected in babel.)
It appears that babel (with french preset) modify the behavior of the colon (as a spacing is required before it in French).
This problem has already been mentioned here and some people propose to avoid the use of the colon. In case of a windows Path, its not possible.
For the moment, I've found a simple hack :
\usepackage[english,main=french]{babel}
and turn to English before including graphics and then return to French. This solution works utbut is not easy to use as I'm maintaining a repository of various tex files (>1000) used by various users and I can't make them use this trick each time.
Any idea about a better solution ?