Posts

Showing posts with the label Relative Path

Convert Absolute Path To Relative Path In Batch File

Answer : @echo off setlocal EnableDelayedExpansion set Path_to_convert=c:\documents\mynicefiles\afile.txt set Reference_path=c:\documents set Result=!Path_to_convert:*%Reference_path%\=! echo Result: %Result%