API Documentation > CorelDRAW > 2025-v26 > RecentFile > IVGRecentFile
RecentFile.FullName property
Gets or sets the recent file's name and path
Syntax:
Property Get FullName() As String
Property Let FullName(ByVal Value As String)
Remarks:
The FullName property returns or specifies the full path and filename of an item in the Most Recently Used (MRU) list of CorelDRAW.
Examples:
The following VBA example displays the list of most recently used files and their paths.
Sub Test()
Dim rf As RecentFile, s As String
s = "Most Recently Used files:"
For Each rf In RecentFiles
  s = s & vbCr & rf.Name & vbTab & rf.Path
Next rf
MsgBox s 
End Sub