https://barnamenevis.org/showpo...7&postcount=62
Dim filename As String = "..\..\myfile.txt"
Dim fullPath As String = "c:\Temp"
Dim filename As String = Path.GetFileName(filename)
Dim fullPath As String = Path.Combine(fullPath, filename)
'// (fullPath is now "c:\Temp\myfile.txt")





