The OneDrive Nightmare Continues: ThisWorkbook.Path and ThisWorkbook.FullName

Kevin Jones 7,265 Reputation points Volunteer Moderator
2024-01-25T07:46:09+00:00

I posted here about my OneDrive backup everything nightmare. Another bad dream has reared it's ugliness in VBA land: ThisWorkbook.Path and ThisWorkbook.FullName.

For some reason I absolutely cannot fathom, Excel returns a useless URL when reading these two properties in a workbook opened from any OneDrive or Sharepoint shared location. For example, ThisWorkbook.FullName value when opened from any location other than a OneDrive shared folder:

C:\Users\Public\Just Another Workbook.xlsx

But, put that workbook in any OneDrive shared folder, and this is returned:

https://datapros-my.sharepoint.com/personal/kjones\_dataautopros\_com/Documents/Just Another Workbook.xlsx

where the actual local path is:

C:\Users\Kevin Jones\OneDrive - Data Automation Professionals\Just Another Workbook.xlsx

Right off the bat it's painfully obvious that the URL is absolutely useless to anyone and everyone. One of the most common automation tasks that use ThisWorkbook.FullName or ThisWorkbook.Path is to navigate around inside the folder in which the workbook is located. There is no easy way to translate that URL into a local path. It is possible but it's a tricky operation - more on that later. What else is that URL good for? I have no idea.

The whole idea of sharing folders and files on a local drive is so that they can be used the same way as if they were in a non-shared folder. So we don't have to go to the online location and either download the file or open it in a browser. DropBox did it right. Google Drive did it right. So what were the Microsoft engineers thinking by exposing the URL versus the local path? Anyone have a clue?

A lot of people have said to turn off this OneDrive option. Even if that did work, it is no longer available in the current OneDrive UI/UX.

People have written URL parsers and file search routines to try to translate the URL into a local path. This StackOverflow thread got pretty crazy with ideas but none of the solutions worked in all scenarios. Remember that OneDrive supports one personal account, up to nine business accounts, and Sharepoint folders - each of these have different structures in their URLs without any obvious mapping to the folder on the local drive. I did find one possible solution in the StackOverflow thread that showed promise - I reworked it so that it worked in as many scenarios as I could find. I'm posting it below.

But, before we get to that, a message to Microsoft: Please refrain from serving up URLs in ThisWorkbook.FullName and ThisWorkbook.Path when the workbook is stored or opened on a local drive. It serves no purpose other than to annoy us and make our lives more difficult. It's also not reality as the workbook is, in fact, located on the local drive in a local folder - that's from where Excel opens it and saves it. Keep the URL an internal thing (I realize it's needed for real time collaboration) and, if you actually believe that someone out here can use it, add a new ThisWorkbook property such as SharedURL.

Below is the routine for getting the local path as it should be returned in FullName. It's been tested on multiple machines, Windows 10 and 11, and Sharepoint and OneDrive shared folders. Post to this thread if you make any improvements or fix any issues.

Public Function OneDriveLocalFilePath( _

        Optional ByRef OneDriveFilePath As String _

    ) As String

' Returns the local file path given a URL to a file stored in a OneDrive or Sharepoint folder. For

' some reason the Excel Workbook properties Path and FullName return URLs instead of local paths.

'

' OneDriveFilePath - Any valid local path or URL referencing a OneDrive file. If the path cannot be

'   resolved, the original path is returned.

    Dim WScript As Object

    Dim WinMgmtS As Object

    Dim Result As String

    Dim ProposedFilePath As String

    Dim ConfirmedFilePath As String

    Dim RegistryKey As Variant

    Dim RegistryKeys As Variant

    Dim Types As Variant

    Dim CID As String

    Dim MountPoint As String

    Dim URLNamespace As String

    Dim Path1 As String

    Dim Path2 As String

    Dim Directories As Variant

    Dim ParentDirectory As String

    ' Default to the full name property of ThisWorkbook

    If Len(OneDriveFilePath) = 0 Then

        OneDriveFilePath = ThisWorkbook.FullName

    End If

    ' Deterimine if the path is a URL or a local path

    If Left(OneDriveFilePath, 8) = "https://" Then

        ' WScript and Winmgmts are used to navigate the registry

        Set WScript = CreateObject("WScript.Shell")

        Set WinMgmtS = GetObject("Winmgmts:root\default:StdRegProv")

        ' Enumerate the key HKEY_CURRENT_USER\SOFTWARE\SyncEngines\Providers\OneDrive

        If WinMgmtS.EnumKey(&H80000001, "SOFTWARE\SyncEngines\Providers\OneDrive", RegistryKeys, Types) = 0 Then

            For Each RegistryKey In RegistryKeys

                ' Each key has three interesting values:

                '

                '   CID - Some hash code sometimes used in the path

                '   URLNameSpace - The URL to a parent directory in the cloud

                '   MountPoint - The local path OneDrive uses to mirror files found in the URLNameSpace address

                CID = vbNullString

                MountPoint = vbNullString

                URLNamespace = vbNullString

                ProposedFilePath = vbNullString

                ConfirmedFilePath = vbNullString

                On Error Resume Next

                CID = WScript.RegRead("HKEY_CURRENT_USER\SOFTWARE\SyncEngines\Providers\OneDrive" & RegistryKey & "\CID")

                MountPoint = WScript.RegRead("HKEY_CURRENT_USER\SOFTWARE\SyncEngines\Providers\OneDrive" & RegistryKey & "\MountPoint")

                URLNamespace = WScript.RegRead("HKEY_CURRENT_USER\SOFTWARE\SyncEngines\Providers\OneDrive" & RegistryKey & "\URLNamespace")

                On Error GoTo 0

                ' It's not always clear how for down the folder tree the URL and the mount point go so the file's parent is

            ' pulled from the OneDrivePath so that it can be compared with and without

                Directories = Split(OneDriveFilePath, "/")

                ParentDirectory = Directories(UBound(Directories) - 1)

                ' Remove any trailing slash from the URL name space

                If Right(URLNamespace, 1) = "/" Then

                    URLNamespace = Left(URLNamespace, Len(URLNamespace) - 1)

                End If

                ' Build two paths to test against: one without the CID and one with the CID

                Path1 = URLNamespace & "/"

                Path2 = URLNamespace & "/" & CID & "/"

                ' Try the path without the CID

                If Left(OneDriveFilePath, Len(Path1)) = Path1 Then

                    ' Try building the final local path from the mount point path and the unmatched end of the OneDrive path

                ' and return it if the file exists

                    ProposedFilePath = MountPoint & "" & Replace(Replace(Mid(OneDriveFilePath, Len(Path1) + 1), "/", ""), "%20", Space(1))

                    If ExistingFile(ProposedFilePath) Then

                        ConfirmedFilePath = ProposedFilePath

                        Exit For

                    End If

                    ' Try building the final local path from the mount point path and the unmatched end of the OneDrive path

                ' but without the first folder and return it if the file exists

                    If Right(MountPoint, Len(ParentDirectory)) = ParentDirectory Then

                        ProposedFilePath = Replace(Replace(Mid(OneDriveFilePath, Len(Path1) + 1), "/", ""), "%20", Space(1))

                        ProposedFilePath = Mid(ProposedFilePath, InStr(ProposedFilePath, "") + 1)

                        ProposedFilePath = MountPoint & "" & ProposedFilePath

                        If ExistingFile(ProposedFilePath) Then

                            ConfirmedFilePath = ProposedFilePath

                            Exit For

                        End If

                    End If

                End If

                ' Try building the final local path from the mount point path with the CID attached and the unmatched end

            ' of the OneDrive path and return it if the file exists

                If Left(OneDriveFilePath, Len(Path2)) = Path2 Then

                    ProposedFilePath = Replace(Replace(Mid(OneDriveFilePath, Len(Path2)), "/", ""), "%20", Space(1))

                    ProposedFilePath = Mid(ProposedFilePath, InStr(ProposedFilePath, "") + 1)

                    ProposedFilePath = MountPoint & "" & ProposedFilePath

                    If ExistingFile(ProposedFilePath) Then

                        ConfirmedFilePath = ProposedFilePath

                        Exit For

                    End If

                End If

            Next RegistryKey

        End If

        ' Return the confirmed file path if a valid path was found

        If Len(ConfirmedFilePath) > 0 Then

            Result = ConfirmedFilePath

        Else

            Result = OneDriveFilePath

        End If

    Else

        ' The path is not a URL so return it as-is

        Result = OneDriveFilePath

    End If

    OneDriveLocalFilePath = Result

End Function

Public Function ExistingFile( _

        ByVal FilePath As String _

    ) As Boolean

' Returns True if the file exists, False otherwise. This routine does not use the Dir technique as

' the Dir function resets any current Dir process.

'

' FilePath - Full path to the folder or file to be evaluated.

    Dim Attributes As Long

    On Error Resume Next

    Attributes = GetAttr(FilePath)

    ExistingFile = (Err.Number = 0) And (Attributes And vbDirectory) = 0

    Err.Clear

End Function

Kevin

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

105 answers

Sort by: Most helpful
  1. Anonymous
    2025-04-04T11:00:04+00:00

    Hi Kevin.

    I am using the code from your post November 28, 2024 (plus the ExistingFile code from July 2, 2024).

    I am getting no path back; the debugging log goes like below. As you can see, there are hits on entries 4 and 7.

    Can you tell me what goes wrong here?

    Entering OneDriveLocalFilePath
    OneDrive file path: https://hfc-my.sharepoint.com/personal/no_hfc_dk/Documents/Dokumenter
    Evaluating registry entries in 'HKEY_CURRENT_USER\SOFTWARE\SyncEngines\Providers\OneDrive\'
    
    Evaluating registry entry 1
      Key:                                     020cef3a8c684966a865648a2e8864a0+6
      CID:
      URLNamespace:                            https://hfc.sharepoint.com/sites/Section_2832-Varsler/Delte dokumenter/
      MountPoint:                              C:\Users\NO\HF-Centret Efterslægten\Administration - Varsler - Varsler
      LibraryType:                             teamsite
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 2
      Key:                                     1efaa223a6f2499d98d692e82913e022+4
      CID:
      URLNamespace:                            https://hfc.sharepoint.com/sites/Fotoarkiv/Delte dokumenter/
      MountPoint:                              C:\Users\NO\HF-Centret Efterslægten\Fotoarkiv - SharePoint
      LibraryType:                             teamsite
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 3
      Key:                                     264ad778616e47dfa88587d40a762941+3
      CID:
      URLNamespace:                            https://hfc.sharepoint.com/sites/SAEM505/Delte dokumenter/
      MountPoint:                              C:\Users\NO\HF-Centret Efterslægten\SAEM - Sharepoint
      LibraryType:                             teamsite
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 4
      Key:                                     32362dd6861f49c1af00d192e6d43807
      CID:
      URLNamespace:                            https://hfc-my.sharepoint.com/personal/no_hfc_dk/Documents/
      MountPoint:                              C:\Users\NO\OneDrive - HF-Centret Efterslægten
      LibraryType:                             mysite
      Local partial path without first folder: Dokumenter
      Local partial path with first folder:
    
    Evaluating registry entry 5
      Key:                                     40beee92a2f140f4bf26cdbe67b126a4+2
      CID:
      URLNamespace:                            https://hfc.sharepoint.com/sites/Section_2832/Delte dokumenter/
      MountPoint:                              C:\Users\NO\HF-Centret Efterslægten\Administration - General
      LibraryType:                             teamsite
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 6
      Key:                                     65387f6bcc1a4bdca41cff5213d525d1+1
      CID:
      URLNamespace:                            https://kvucdk.sharepoint.com/sites/CR-Projektgruppe/Shared Documents/
      MountPoint:                              C:\Users\NO\KVUC\CR - Projektgruppe. - General
      LibraryType:                             teamsite
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 7
      Key:                                     Business1
      CID:                                     cbae6c25-6a9f-4949-8b78-2ecc2bbce555
      URLNamespace:                            https://hfc-my.sharepoint.com/personal/no_hfc_dk/Documents/
      MountPoint:                              C:\Users\NO\OneDrive - HF-Centret Efterslægten
      LibraryType:                             personal
      Local partial path without first folder: Dokumenter
      Local partial path with first folder:
    
    Evaluating registry entry 8
      Key:                                     Business2
      CID:                                     74847167-6311-4fa0-8788-7c9715b76d63
      URLNamespace:                            https://hfc.sharepoint.com/sites/laererintra/Delte dokumenter/
      MountPoint:                              C:\Users\NO\HF-Centret Efterslægten\LærerIntra - HF-C & Hør
      LibraryType:                             personal
      URL name space does not match base of OneDrive path
    
    Evaluating registry entry 9
      Key:                                     Personal
      CID:                                     e1a0747f51550204
      URLNamespace:                            https://d.docs.live.net
      MountPoint:                              C:\Users\NO\OneDrive
      LibraryType:                             personal
      URL name space does not match base of OneDrive path
    
      No local path was found
    
      OneDrive result: A local file path to an existing file was not found.
    

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-01-22T22:42:43+00:00

    Hi Kevin,

    Thanks.

    I am not sure where to set this value to be honest. I have bounced this back to someone who helped me build all my VBA code and he understands your source code but he can't get it to work he said that no matter what I do, the problem is the OneDrive file syncing. No matter what we do, if I am offline, it does not matter which path I try to use, the file we want to open will not open.

    You are welcome to try yourself - disconnect from the network so you are completely offline and then try to run your code to open a file. You will see it is not possible unless you manually pause the Onedrive syncing. I have found that if you do pause the Onedrive syncing, you need to pause it BEFORE you open the file that the VBA code will run from.

    Good luck, but I think I am just going to have to continue with the "pause syncing" and then run the VBA code. Bit of a pain, but it works!

    J

    Was this answer helpful?

    0 comments No comments
  3. Kevin Jones 7,265 Reputation points Volunteer Moderator
    2025-01-22T02:35:50+00:00

    I still can't tell what is going on here.

    Set the conditional compilation argument "Debugging" to -1.

    Run your test.

    Post the contents of the "OneDrive Local File Path.txt" file which will have been written to your desktop.

    Kevin

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2025-01-20T22:51:39+00:00

    I get the following in the debug window:

    https://curaterrae-my.sharepoint.com/personal/james\_harmer\_cura-terrae\_com/Documents/Desktop/RT TESTING

    Sorry, we couldn't find File_to_open.xlsx. Is it possible it was moved, renamed or deleted?

    Was this answer helpful?

    0 comments No comments
  5. Kevin Jones 7,265 Reputation points Volunteer Moderator
    2025-01-19T23:53:33+00:00

    Please run this code and report what is printed to the Debug window:

    Debug.Print ThisWorkbook.Path

    Debug.Print OneDriveLocalFolderPath

    On Error Resume Next

    Workbooks.Open OneDriveLocalFolderPath & "File_to_open.xlsx"

    Debug.Print Err.Description

    Kevin

    Was this answer helpful?

    0 comments No comments