Hello all
I wrote an expression without errors, but the result is incorrect.
Is the expression written incorrectly, or is there another solution?
Please help
Expression:
var path = "\\192.168.10.20\\ls\\Number\\Year";
var year = $feature.Year; // Assuming Year is a field in your dataset
var number = $feature.Number; // Assuming Number is a field in your dataset
return path + "\\" + year + "\\" + number;


I wrote "\\" but the result shows \, so the result is not required and the path cannot be accessed.
Please help