2022-08-09 04:40 AM
Hi,
I have observed that meta keys "pardm.src" or "param.dst" which contains directory path. when we click on parameter then some time it return the directory path with "/" and some time it return with "//".
e.g.
param.src='xxx.exe "c:\\users\\xyz\\aaaaa\\scripts\\cqwer.xx" "yuio.exe" "cpoiop" "ccc"'
or
param.dst = 'cmd /c powershell d:/abc/platform/pppp/ppp/bin/test.ps1 asdfff d:/ssss/ffffff/pppp/qqqq'
any one has any idea what is the logic behind this.
2022-08-22 09:41 AM
In the example you've given, I think the most likely reason you're getting double back slash \\ in pathnames is because the backslash is used for special characters like \n for a new line (carriage return), so when you want to actually refer to a backslash in the case of a path name you have to 'escape' the special character with a double backslash.
The forward slash doesn't have this occuring (at least as far as I'm aware). It's probably related to the way the log parser on the decoder is parsing the messages.