package filesystem
Type Members
-
case class
Chmod(path: String, permissions: String, dirFiles: String) extends FileSystemAction with Product with Serializable
Create an ozzie chmod step
Create an ozzie chmod step
- path
the path to operate on
- permissions
the permissions to set
- dirFiles
should the operation be recursive
-
case class
Delete(path: String) extends PrepareFSAction with FileSystemAction with Product with Serializable
Oozie delete definition
Oozie delete definition
- path
the path to delete
-
trait
FileSystemAction extends XmlSerializable
Base trait for file system actions
-
case class
MakeDir(path: String) extends PrepareFSAction with FileSystemAction with Product with Serializable
Oozie make directory definition
Oozie make directory definition
- path
the path to create
-
case class
Move(srcPath: String, targetPath: String) extends FileSystemAction with Product with Serializable
Create an ozzie move step
Create an ozzie move step
- srcPath
the path to move from
- targetPath
the path to move to
-
case class
Touchz(path: String) extends FileSystemAction with Product with Serializable
Create a touch step
Create a touch step
- path
the path to touch