Did you open the link with a browser or perhaps download the xml text file? You should open the link with Automagic and it will do the translation for you.wfrcrd wrote:it's not so simple to me to translate the xml text to a flow interface
Add action (Rename file)
Moderator: Martin
Re: Add action (Rename file)
Re: Add action (Rename file)
"Move files" action allows globs (wildcards), for specification of group of files - for example, all those matching a specific extension -, while as destination, a directory may be specified. That way can you move many files with one action to another directory, without the need to know their names.
Re: Add action (Rename file)
I've imported the xlm file into Automagic so I've seen the flow.
A bit more clear but there's a lot of stuff for programmers, wich I'm not.
So I'd be really glad if someone of you could create a flow and put here the xlm file here,
it soudl be so easy for you,
then it could be more and more easy to me to understand ( and finally use it !).
A simply pourpose of the flow could be:
1) monitor the directory A and start when a new file is created there (there is the proper trigger)
2) move that file from the directory A to directory B and add a suffix called "_MOVED"
so if the the name of the file is "file.name" the finally name file on the B directory should be "file.name_MOVED"
I'm asking too much?
Anyway thank you in advice.
A bit more clear but there's a lot of stuff for programmers, wich I'm not.
So I'd be really glad if someone of you could create a flow and put here the xlm file here,
it soudl be so easy for you,
then it could be more and more easy to me to understand ( and finally use it !).
A simply pourpose of the flow could be:
1) monitor the directory A and start when a new file is created there (there is the proper trigger)
2) move that file from the directory A to directory B and add a suffix called "_MOVED"
so if the the name of the file is "file.name" the finally name file on the B directory should be "file.name_MOVED"
I'm asking too much?
Anyway thank you in advice.
Re: Add action (Rename file)
That is actually very simple to do, you only need the trigger you've mentioned and one additional action
Take a look at the attached flow. In the action Move File I used the variables from the File Observer trigger to move any new camera picture to the root of the user storage and add the „_MOVED“-suffix.
Take a look at the attached flow. In the action Move File I used the variables from the File Observer trigger to move any new camera picture to the root of the user storage and add the „_MOVED“-suffix.
- Attachments
-
- flow_Move_new_images_20160718_091927.xml
- (1.81 KiB) Downloaded 891 times
Re: Add action (Rename file)
Well thank you!
The flow works good but how can I move it to a different directory wich already exist?
I've tried some modifications but not results (just a bad loops)
I can't still understand the expression :
what does it means this?
{registered_path}/{path}
because
{MickeyMouse}/{Mouse} don't work, so
where I can find the right words and their meanings?
Thank you!
The flow works good but how can I move it to a different directory wich already exist?
I've tried some modifications but not results (just a bad loops)
I can't still understand the expression :
what does it means this?
{registered_path}/{path}
because
{MickeyMouse}/{Mouse} don't work, so
where I can find the right words and their meanings?
Thank you!
Re: Add action (Rename file)
The part inside the curly braces is where the magic happenswfrcrd wrote:what does it means this?
{registered_path}/{path}
These are the so called "variables" and they are filled in by the trigger.
{registered_path} is the path which is monitored by the trigger and {path} is the file that has actually triggered the action (in this case the newly created image file).
So {registered_path}/{path} is the complete path of the file that has triggered the action.
If you look at the target path of the Move File action you'll see "/storage/emulated/0/{path}_MOVED". {path} will be replaced internally with the actual name of the file.
So if you want to change the destination path you'll have to replace "/storage/emulated/0/" with something else.
To learn about the variables that are provided by a trigger open the trigger's options and press the "?" button in the top right corner. The help text lists all variables which are created by the trigger.
Re: Add action (Rename file)
When i tap the ? symbols it tell me that the guide it's not available, and it happens always.
Anyway finally it works, thank you.
One step ahead: to monitor more than one directory and tu move the files to the same directory (from A or B, both to C)
may I use the same flow or it's better to create another flow?
Anyway finally it works, thank you.
One step ahead: to monitor more than one directory and tu move the files to the same directory (from A or B, both to C)
may I use the same flow or it's better to create another flow?
Re: Add action (Rename file)
The guide needs an internet connection. Have you blocked that by chance? When you are viewing the guide, you can download it through menu to be able to see it offline. If Automagic IS connected and you are still unable to view the guide, you should open a thread about that in the bug report forum here.wfrcrd wrote:When i tap the ? symbols it tell me that the guide it's not available, and it happens always.
Also, you can view the exact same guide here: http://automagic4android.com/en/help
The subsections, triggers, conditions and actions contains explanations for every element in AM.
Re: Add action (Rename file)
You can use the same flow!wfrcrd wrote:One step ahead: to monitor more than one directory and tu move the files to the same directory (from A or B, both to C)
may I use the same flow or it's better to create another flow?
Tap on the trigger icon in the flow, then tap on the menu button on top, then select New to add another trigger.
Add a new File Observer and fill in the second path to monitor (and set any other required options). You don't need to change the attached Move File action.
The flow will now be triggered by either of the two triggers!
The subsequent action Move File is executed with the variables filled by the trigger that actually started the flow.
Re: Add action (Rename file)
Thank you another question a bit OT :
more triggers and more flows means more battery drain or not?
more triggers and more flows means more battery drain or not?