You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mount function is working good (Thanks !). I could mount two or more file systems on the same server.
the problem: its not documented. I was found an example on your tests and make it working.
This need to be documented somewhere in google:
fileSystem.Root.Task.ContinueWith(r =>{varroot= r.Result;foreach(var fs in _options.Children)// I was added to the configuration, a loop of Children-FileSystems{varq= root.GetChildAsync(fs.Key,new System.Threading.CancellationToken()); q.ContinueWith(f =>{varmountpoint= q.Result as ICollection ; fileSystem.Mount(new System.Uri(fs.Key +"/", System.UriKind.Relative),new DotNetFileSystem(fs.Value, mountpoint, fs.Value.RootPath.TrimEnd('\\','/'), _pathTraversalEngine, _lockManager, _propertyStoreFactory));});}});
The text was updated successfully, but these errors were encountered:
The mount function is working good (Thanks !). I could mount two or more file systems on the same server.
the problem: its not documented. I was found an example on your tests and make it working.
This need to be documented somewhere in google:
The text was updated successfully, but these errors were encountered: