1
Connect FileUltimate to OneDrive for enterprise
Question asked by Maxime Pelletier - 7/5/2017 at 10:14 AM
Answered
Hi,
 
Is it possible to connect FileUltimate to OneDrive for Enterprise personnal folder?
 
Thanks

1 Reply

Reply to Thread
0
Cem Alacayir Replied
Employee Post Marked As Answer
This should be possible if you use the UNC Path for OneDrive.
 
If you open your OneDrive on the Web you can see an URL like this:
 
https://tenant-my.sharepoint.com/personal/username/Documents/Forms/All.aspx
 
You have to convert the URL to an UNC-Path and shorten it to the library URL:
 
\\tenant-my.sharepoint.com\personal\username\Documents
 
This should work. If not just add a @ssl at the end of the Domain Name:
 
\\tenant-my.sharepoint.com@ssl\personal\username\Documents
 
After you figure out the UNC Path, test connecting to it in Windows Explorer by entering your OneDrive credentials when asked.
 
If this works, FileUltimate would be also able to connect to it with this code:
 
var rootFolder = new FileManagerRootFolder
{
    Name = "My OneDrive",
    Location = new PhysicalLocation
    {
        Path = @"\\tenant-my.sharepoint.com@ssl\personal\username\Documents",
        UserName = "USERNAME",
        Password = "PASSWORD"
    }
};

fileManager.RootFolders.Add(rootFolder);
Let me know.
 
 
 

Reply to Thread