|
I'm trying to create a setformat entry, that can be used to import missing sets into GetRight. When I enter a "\" character it is changed to ` (character #96). I entered the "\" character as \, \, &#x5c, \\, but the output always changed the \ character to the ` character.
<SetFormat> <Format name="GetRight" pre="" post="" separator="&#13;&#10;" string="URL: http://domain.com/%f.zip&#13;&#10;File: D:&#x5c;Path&#x5c;to&#x5c;New&#x5c;File&#x5c;%f.zip&#13;&#10;Desc: %d&#13;&#10;Alt: http://domain.com/%f.zip&#13;&#10;"/> </SetFormat>
Which should output the following:
URL: http://domain.com/file.zip File: D:\Path\to\New\File\file.zip Desc: description for file Alt: http://domain.com/file.zip
instead the File: line is changed to:
File: D:`Path`to`New`File`file.zip
|