Hello
I have an inquiry from you
I have a file path with commands line
Is there a way to separate the path from the commands line?
I want the result in an array
for example
$path = '"c:\NVDA\NVDA slav Portable 1\NVDA.exe" -r -m -path="d:\NVDA Path\Portable"'
there are any method to separate this text?
i want the result to be as that
$array[1] = "c:\NVDA\NVDA slav Portable 1\NVDA.exe"
$array[2] = '-r -m -path="d:\NVDA Path\Portable"'
Thanks in advance
am Waiting for your answers