vlt.path.absolute2relative-Determinetherelativepathbetweentwofilenames,giventwoabsolutenamesr=vlt.path.absolute2relative(absolutepath1,absolutepath2)Giventwoabsolutepaths,thisfunctionreturnstherelativepathofpath1withrespecttopath2.Thisfunctiontakesname/valuepairsthatmodifyitsdefaultbehavior:|Parameter|Description||------------------------|-------------------------------------------||input_filesep('/')|Inputfileseparator(considerfilesep)||output_filesep('/')|Outputfileseparator(usually'/'forhtml||backdir_symbol('..')|Symbolformovingbackonedirectory|**Example**:r=vlt.path.absolute2relative('/Users/me/mydir1/mydir2/myfile1.m','/Users/me/mydir3/myfile2.m')% r = '../mydir1/mydir2/myfile1.m'