FileSystemObject : GetAbsolutePathName Method
Description:
Returns a complete Path from a provided path.
Format :
objectOfFileSystemObject. GetAbsolutePathName(providedPath)
Arguments:
- objectOfFileSystemObject
- As the names says, it’s a FileSystemObject.
- providedPath
- Path provided to change to a complete path.
Function ShowAbsolutePath(path) Dim fso Set fso = CreateObject("Scripting.FileSystemObject") ShowAbsolutePath = fso.GetAbsolutePathName(path) End Function