File.Dir (gb)
Static Function Dir ( Path As String ) As String
Retourne le chemin associé à un fichier.
Cet exemple affichera des informations par rapport au chemin du 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