Public Function FTestCarFichInterdit(F$) As Boolean
FTestCarFichInterdit = False
Car$ = "< > \ / | ? : * . " & Chr(34)
For I = 1 To 10
C$ = Choose(I, "<", ">", "\", "/", "|", "?", ":", "*", ".", Chr(34))
If InStr(F$, C$) Then
MsgBox "Dans un nom de fichier," & vbLf & "les caractères suivants sont interdits !" & vbLf & vbLf & Car$, vbCritical, "Info"
FTestCarFichInterdit = True
End If
Next
End Function