Difference between revisions of "CopyDirStage"

From CCIL
Jump to: navigation, search
(See Also)
(See Also)
Line 72: Line 72:
  
 
== See Also ==
 
== See Also ==
* [[Stages#IO]]
+
* [[Stages#IO|IO Stages]]

Revision as of 07:57, 2 June 2017

Copies a directory.

Overview


jar ccil-api
recommended name dir-copy
class net.ccil.stages.io.CopyDirStage
location /ccil-api/src/main/java/net/ccil/stages/io/CopyDirStage.java
svn svn://svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/io/CopyDirStage.java

Parameters

Name Type Description Comment
name java.lang.String The source directory.
target java.lang.String A target directory.
failSafe java.lang.Boolean Ignore errors.
skip java.lang.String Comma-separated list with items to skip. They can be both files or folders.

Registration

service:dir-copy	rdf:type	entity:service ;				
				entity:implementation	"net.ccil.stages.io.CopyDirStage" ;
				entity:classpath	"" ;
				entity:arguments	"" .

Context

TBA

Example

TBA

See Also