File System

File System plugin.

Available actions:

  • -> - write to file.

  • mkdir - create directory

  • rm - remove file or directory

  • mv - move file or directory

  • cp - copy file or directory

  • find - find files

Action Handler: Write to file

ID: com.fireblink.fbl.fs.file.write

Aliases:

  • fbl.fs.file.write

  • fs.file.write

  • file.write

  • ->

Example 1: Define File Content Inline

Example 2: Define File Content From Other File

Action Handler: Create Directories

Create directory (and all parent ones if missing).

ID: com.fireblink.fbl.fs.dir.create

Aliases:

  • fbl.fs.dir.create

  • fs.dir.create

  • dir.create

  • mkdir -p

  • mkdir

Example:

Action Handler: Remove File or Directory

Removes file or directory for given path.

ID: com.fireblink.fbl.fs.remove

Aliases:

  • fbl.fs.remove

  • fbl.fs.rm

  • fs.remove

  • fs.rm

  • rm -rf

  • remove

  • rm

Action Handler: Move File or Directory

Allows to move/rename file or entire directory.

ID: com.fireblink.fbl.fs.move

Aliases:

  • fbl.fs.move

  • fbl.fs.mv

  • fs.move

  • fs.mv

  • move

  • mv

Example 1: Move file to other folder

Example 2: Move file to other folder and rename it

Example 3: Move folder contents to other folder

Action Handler: Copy File or Directory

Allows to copy file or entire directory.

ID: com.fireblink.fbl.fs.copy

Aliases:

  • fbl.fs.copy

  • fbl.fs.cp

  • fs.copy

  • fs.cp

  • copy

  • cp

Example 1: Copy file to other folder

Example 2: Copy file to other folder with different name

Example 3: Copy folder contents to other folder

Action Handler: Find Files

Find files by mask.

ID: com.fireblink.fbl.fs.find

Aliases:

  • fbl.fs.find

  • fs.find

  • find

Example:

Last updated

Was this helpful?