I want to set "Monitor Folder" on a folder that contains several projects, but I don't want to make proxies of exported files and other files that is not
camera footage.
Within every Project folder in the Projects folder, there is a Media folder, witch contains all camera footage.
The path of the footage might look something like this
F:\Projects\Documentar01\Media\Day1\Card1\XDROOT\CLIP\
is it possible to only encode the files within the media folder for all projects in the Media folder?
Is it possible with the if exist dos command?
Code: Select all
%comspec% /C
"IF EXIST
"%Media%"
(EXIT /B 0)
ELSE
(EXIT /B 1)"