Attempting to change my working directory.
In the command prompt, my input was:
> cd F:
:: Command prompt returned:
> F:\
Then another line appeared, reverting my working directory back to:
C:\Users\caden
Ultimately, I need to run the following command using ffmpeg, but I need to either change the current/working directory, or perhaps combine 'cd F:' with my command, I suppose...
The FFmpeg command I'm using to cut video:
ffmpeg.exe -i "F:\output" -ss 00:00:01 -t 10:00:00 -c:v copy -c:a copy GENTLEWAVESFINAL.mp4
I'm attempting to move my working/current directory, yet to no avail. I suppose the questions I need answered are:
Does the command:
cdchange the current directory until it is altered again, or does it need to be inserted/used for each command used in the prompt?If so, then that means I would need to use
cd F:\+other codehow should the combined code look, using the commands above?

/dswitch allows the drive to also be changed