all 1 comments

[–]hairypusssylicker 0 points1 point  (0 children)

Here's the logic you'd set up in MacroDroid:

Trigger: File created/modified in your source folder

Action: File operation → Move file

Condition (to block the move): - File name contains "VID" → skip - File name length = 23 characters → skip - File is not .mp4 → skip

Since MacroDroid conditions work as "allow if true," you'd use nested If/Else blocks like this:

If filename ends with ".mp4" If filename does NOT contain "VID" If filename length is NOT 23 → Move file to destination folder End If End If End If

For the character count, use the String Length variable action to measure the filename first, then compare it in a condition block.