Fonction ConvertFromURL
Convertit l'URL d'un fichier en un nom de fichier système.
ConvertFromURL(NomFichier)
String
filename : un nom de fichier sous forme de chaîne.
5 appel de procédure incorrect
    systemFile$ = "c:\folder\mytext.txt"
    url$ = ConvertToURL( systemFile$ )
    print url$
    systemFileAgain$ = ConvertFromURL( url$ )
    print systemFileAgain$