Do you have one Shapefile reader or multiple ones? Are you merging feature types?
In terms of reading the data FME doesn't really care when a file is missing, but you may have situations with your transformers where missing one stream of data can either lead to FME terminating the workspace (depending on what you have set for the Rejected Feature Handling) or unexpected results. What those might be really depends on your workspace.
This is something that should be considered carefully: what can happen if part of the input is missing? Does that mean you also only get part of the output? Is it writing to a folder where there might already be an older set of output files, potentially leading to a situation where you have a mix of old and new files?
There is a workspace option to Ignore Failed Readers in Navigator > Workspace Parameters. This setting tells FME whether or not to continue the workspace when reading a dataset fails. See this question.
The value of this option is written into the workspace, so the setting will also be honoured when you call the workspace through a batch file.
There is a workspace option to Ignore Failed Readers in Navigator > Workspace Parameters. This setting tells FME whether or not to continue the workspace when reading a dataset fails. See this question.
The value of this option is written into the workspace, so the setting will also be honoured when you call the workspace through a batch file.
This is what I was looking for. Thanks.