I am trying to pass a full file path to FFMPEG.
C:\\TestFolder\\Input\\Friends - Season 6 - Gag Reel.avi
and it\'s obviously not liking th
are you using FileInfo
class?
it contains (almost) everything about a file, including attributes and file versions, and you don't have to worry about spaces or other unwanted characters. As long as the file exists, it works well on FileInfo.
use it as
FileInfo f = new FileInfo(fullPathEvenWithSpaces);