Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
tunik123
1 year ago

I don’t know how to use Python, but probably you have to double the backslashes in string constants.

“C:\Program Files\\wkxxx\bin\\wkxxx.exe”

At least at C and C++ this is the case.

You could also try “C:/Program Files/wkxxx/bin/wkxxx.exe”. Maybe it works.

daCypher
1 year ago

The slightly different color is an indication of what the problem is. The backslash is a so-called escape character at Python (and most other programming languages too). That means the sign that comes after it gets a special meaning. The most common is probably what creates a new line or \\ what creates a single backslash. The combination \b is a backspace. This means “delete the last sign”, so the “f” of “pdf” has also disappeared.

If you really want to have the backslashes in Python 1:1 in the string, it is easiest if you write a r before the opening quotation mark. This then means “raw string” and nothing is changed.

wkhtmltopdf=r"C:\Program Files ... 
tunik123
1 year ago
Reply to  daCypher

I didn’t know the trick with the r before the string.

daCypher
1 year ago
Reply to  tunik123

You’ve also written, you don’t know about Python 😜

The r is in python about the same as the @ in C# or String.raw in Javascript or simply quote in PowerShell