Santiago
Santiago
you mean like this? `subprocess::call("explorer", "/select,\"" + path.u8string() + "\"");` fails to compile with this error: ``` 1>C:\Users\san\Desktop\scex\vendor\cpp-subprocess\subprocess.hpp(1377,7): error C2668: 'subprocess::detail::ArgumentDeducer::set_option': ambiguous call to overloaded function ``` this is at...
for reference, this python code seems to work fine: ```py import subprocess subprocess.run(r'explorer /select,"C:\Windows"') ``` i think this library should work when given that same string
yeah probably. Also, Is there a reason why you were forcing quotes? that was pretty much bypassing most of the function logic.