I am trying to set the target path:
Target_Path = "C:\Doc\lib\vLib\setting.text"
However, the \v
part is not accepted in python.
I tried to use \\\\
or /\v/
to fix this, referring to the similar question here.
Target_Path = "C:\Doc\lib/\v/Lib\setting.text"
However, it doesn't seem to work for this case.