GetFullPath Method
- Last UpdatedNov 06, 2025
- 1 minute read
Function to build the full path and filename given the directory, filename and extension
'Declaration
Public Shared Function GetFullPath( _
ByVal dirPath As String, _
ByVal fileName As String, _
ByVal fileExt As String _
) As String
'Usage
Dim dirPath As String
Dim fileName As String
Dim fileExt As String
Dim value As String
value = FileHelper.GetFullPath(dirPath, fileName, fileExt)
Parameters
- dirPath
- The directory path in which the file will exist
- fileName
- The file name exclusing its extension
- fileExt
- The extension of the file name excluding the period "."