File.Ext (gb)
Static Function Ext ( Path As String ) As String
Retourne l'extension du nom du fichier.
Cet exemple affichera des informations à propos d'un chemin de fichier sélectionné par l'utilisateur. Il utilise les méthodes
File.Name,
File.BaseName, File.Ext et
File.Dir.
Exemples
PUBLIC SUB ButtonDisplayPath_Click()
IF Dialog.OpenFile() THEN RETURN
PRINT "Full file path: " & Dialog.Path
PRINT "File name (with extension): " & File.Name(Dialog.Path)
PRINT "File name (without extension): " & File.BaseName(Dialog.Path)
PRINT "File extension: " & File.Ext(Dialog.Path)
PRINT "Directory of the file: " & File.Dir(Dialog.Path)
END