Skip to content

Action Reference

Action Reference

Actions are what FinalPlace does to matched files: move, copy, rename, delete…


Move the file to a specified folder. Supports auto-creating subfolders by date (e.g., archive/{YYYY}/{MM}/), so files naturally organize by time. Can also create subfolders by file type.

Destination: D:/Documents/2024

Copy the file to the destination while keeping the original in place. Great for “keep a backup in another location while organizing the original” scenarios.

Rename files automatically using templates. Common patterns: {Date}_{FileName} (date prefix), {Seq}_{FileName} (sequence prefix), {Ext}_{FileName} (type prefix).

TemplateOriginal NameResult
{Date}_{FileName}report.pdf2024-03-15_report.pdf
[Done]_{FileName}draft.docx[Done]_draft.docx
{FileName}_{timestamp}photo.jpgphoto_1700000000.jpg

Automatically extract archives into a folder with the same name. Original archive can be kept or moved after extraction. Great for download folders full of zip/rar/7z files.

Downloads/archive.zip → Downloads/archive/ (extracted contents)

Package multiple files into a zip archive. Great for periodic archiving — e.g., “compress all project files every Friday” — saves space and makes files easy to share.

Destination: D:/Backup/reports
Creates: D:/Backup/reports.zip

Automatically create folder structures. Use with Move to “create the destination folder and move into it at the same time.” Examples: by date 2024/07/, by client name, by project code.

D:/archive/{Year}/{Month}
Creates: D:/archive/2024/03/

Move files to Recycle Bin (not permanent delete). Read-only attributes are automatically stripped before deletion to ensure clean removal. Great for clearing old installers and unwanted duplicates from the Downloads folder.

Clean empty folders, or remove files older than a specified number of days. Great for regular maintenance — e.g., “clean empty folders older than 7 days every morning” or “remove unused temp files older than 30 days every week.”

Batch-change file attributes: read-only, hidden, archive… Use with other actions — e.g., strip read-only before moving, or lock down organized files by setting them as read-only.


Action Chains: Multiple Actions in Sequence

Section titled “Action Chains: Multiple Actions in Sequence”

Multiple actions execute in order, forming an “action chain”:

Step 1: Modify attributes (strip read-only, original file may be read-only)
Step 2: Move to D:/archive/2024
Step 3: Clean directory (remove empty subfolders in source)

Short-circuit rule: If any action fails, subsequent actions do not execute.


If a file with the same name already exists in the destination:

StrategyEffectRecommended?
Rename (default)File becomes report (1).pdf, report (2).pdf⭐⭐⭐ Safest
SkipDon’t overwrite, don’t move — file stays in place⭐⭐ Conservative
OverwriteReplace the old fileUse with caution

The default is “Rename” — no files are ever lost.


When moving a file from C: to D: (or vice versa), FinalPlace does this:

  1. Copy the complete file to the destination first
  2. Verify the copied file matches the original in size/content
  3. Only then delete the original

The benefit: even if power goes out or the system crashes mid-transfer, the destination already has a complete copy. No data loss.


Use these variables when creating folders or renaming files:

VariableMeaningExample Output
{FileName}Original file name (no extension)report
{FileExt}File extensionpdf
{Date}Date2024-03-15
{Time}Time14-30-00
{Year}Year2024
{Month}Month03
{Day}Day15
{timestamp}Unix timestamp (seconds)1700000000
{random}Random 4-digit number7392
{counter}Incrementing number001, 002