File.Name (gb)
Static Function Name ( Path As String ) As String
Retourne le nom composant le chemin d'accès au fichier.
Cet exemple affichera des informations par rapport au 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