Index: /trunk/psModules/src/camera/pmFPAfileIO.c
===================================================================
--- /trunk/psModules/src/camera/pmFPAfileIO.c	(revision 13518)
+++ /trunk/psModules/src/camera/pmFPAfileIO.c	(revision 13519)
@@ -851,4 +851,9 @@
     // (if there are multiple files defined with the same name).
 
+    if (!psMetadataLookup(files, name)) {
+        // We activated every example of that file that we could find.
+        return true;
+    }
+
     psString regex = NULL;              // Regular expression for psMetadataIteratorAlloc
     if (name) {
@@ -871,9 +876,4 @@
     psFree(regex);
 
-    if (num == 0) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, "Unable to find any files matching %s", name);
-        return false;
-    }
-
-    return true;
-}
+    return true;
+}
