[MS CE 15.2] References files path to OneDrive folder

Hi,

In our company, we are now using onedrive to store our CAD projects

We are facing a problem with the path for the reference files

If I attach a reference path it uses my Windows user directory :

C:\user\[MYWindowsLogin]\OneDrive-Of-My-Company\Project Folders\Shared Project\ReferenceFile.dgn

So, when a collegue opens the file, obviously the reference file  is not found because his windows login is different.

Using relative paths does not help. Not sure that MS_RFDIR can help either because we have a lot of project directories

Any ideas ?

Many thanks

Parents
  • OneDrive creates Windows Environment variables that point to the OneDrive folder of the current user. You can use environment variables as regular variables in MicroStation.

    So setting MS_RFDIR to:

    MS_RFDIR = $(OneDrive)/Project Folders/Shared Project/
    
    add additional paths with the > operator:
    MS_RFDIR > $(OneDrive)/Project Folders/Shared Project/other_ref_dir/
    
    Note: slashes should be forward slashes in configuration files.

     

Reply
  • OneDrive creates Windows Environment variables that point to the OneDrive folder of the current user. You can use environment variables as regular variables in MicroStation.

    So setting MS_RFDIR to:

    MS_RFDIR = $(OneDrive)/Project Folders/Shared Project/
    
    add additional paths with the > operator:
    MS_RFDIR > $(OneDrive)/Project Folders/Shared Project/other_ref_dir/
    
    Note: slashes should be forward slashes in configuration files.

     

Children