You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nullable paths are useful when a process emits or receives a tuple containing a path that may not exist.
553
+
With a nullable path, you can handle the null case directly in your process script.
554
+
552
555
553
556
Multiple input files
554
557
--------------------
@@ -1016,7 +1019,7 @@ Name Description
1016
1019
``type`` Type of paths returned, either ``file``, ``dir`` or ``any`` (default: ``any``, or ``file`` if the specified file name pattern contains a double star (``**``))
1017
1020
``maxDepth`` Maximum number of directory levels to visit (default: no limit)
1018
1021
``includeInputs`` When ``true`` any input files matching an output file glob pattern are included.
1019
-
``nullable`` When ``true`` emit a NullablePath instead to abort the process
1022
+
``nullable`` When ``true`` emit a null path instead of failing, if the output path doesn't exist
0 commit comments