Adobe Bridge script - Download images from a URL link to a folder path with a Cyrillic name
I am trying to download images from a URL link to a folder path with a Cyrillic name using Adobe Bridge scripting.
Example:
var localImgPath = 'C:/Users/serge/Desktop/Привіт світ/new-img.png';
var imageUrl = 'https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png';
app.system('curl -o "' + localImgPath + '" "' + imageUrl + '" pause');
Error:

But if the path to the saved file is entirely in Latin, the file is successfully saved. And if I write a cmd line with a Cyrillic path, it also works.
curl -o "C:/Users/serge/Desktop/Привіт світ/new-img.png" "https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png"

Adobe Bridge passes incorrect path. How can this be fixed?
I am trying to embed it in a large script.
