Nevron Open Vision Documentation
Nevron.Nov.IO Namespace / NPath Class / MakeRelative Method


In This Topic
    MakeRelative Method
    In This Topic
    Gets a relative path leading from the first path (fromPath) to the second one (toPath). For example, if you pass "C:\Documents\Mark" as fromPath and "C:\Documents\Jane" as toPath, the resulting relative path will be "..\Jane".
    Syntax
    'Declaration
     
    
    Public Function MakeRelative( _
       ByVal fromPath As System.String, _
       ByVal toPath As System.String _
    ) As System.String
    'Usage
     
    
    Dim instance As NPath
    Dim fromPath As System.String
    Dim toPath As System.String
    Dim value As System.String
     
    value = instance.MakeRelative(fromPath, toPath)
    public System.string MakeRelative( 
       System.string fromPath,
       System.string toPath
    )

    Parameters

    fromPath
    toPath
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also