# -*- coding: iso-8859-1 -*- #. // _by_url.py from os.path import isfile #. // Savoir si une url existe. def by_url( cUrl ): cFile = cUrl cFile = cFile.replace( "file:///", "" ) cFile = cFile.replace( "/", "\\" ) cFile = cFile.replace( "%20", " " ) cFile = cFile.replace( "|", ":" ) return isfile( cFile ) ''' Dernière modification : 2022-02-23 from _by_url import by_url # // Savoir si une url existe. '''