File.BaseName (gb)
Static Function BaseName ( Path As String ) As String
Retourne le nom du fichier sans son extension.
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