Hi Alejandro,
You don't need quotes, simply set the folder after the switch as it is...
This works:
Josip
You don't need quotes, simply set the folder after the switch as it is...
This works:
private List<string> GetArgs()
{
List<string> args = new List<string>();
args.Add("-empty"); // this one will not be used but it must be here
args.Add("-sDEVICE=pnggray");
args.Add(@"-oE:\folder with whitespaces\test.png");
args.Add("-f");
args.Add(@"E:\folder with whitespaces\test.pdf");
return args;
}
Cheers,Josip