Name

Definition of Name:

It is a concept that refers to changing the name of files (images, pdf, documents, ….).

Advantages of the RUNOS app compared to other apps:

Most programs that use naming technology require manual user interaction and are suitable for browsing files and selecting the file whose name they want to rename after searching.

However, if automatic file renaming is required without user intervention, traditional applications are inadequate for such tasks.

This is where RUNOS comes in. It is designed to rename files without user intervention through simple commands that the user can pre-configure.

example:

change name and copy it in anther folder :
JavaScript
{  "Name": "FileToNAS",
  "Autostart": false,
  "Trigger": {
    "Type": "File",
    "Name": "Incoming",
    "Parameters": {
      "Pool": "D:\\Poolsmb",
      "Filter": "*.*",
      "NewName": "Invoice_1_{{Funcs.now(\"yyyy-MM-dd HH-mm\")}}.pdf"
    }
},
"Actions": [   {
      "Type": "SMB",
      "Name": "CopyFile",
      "TimeoutSeconds": 90,
      "Parameters": {
        "Task": "Copy",
        "Source": "{{Trigger.Response.Results.first.FilePath}}",
        "Destination": "D:\\smb",
        "Overwrite": true
      }
    }
]
}

SMB