How to set limit to move files from one folder to another folder

Hi All,

as per my workflow it will download 200 files in every hour and I need to move 150 files in folder A from download folder and rest 50 need to move in folder B. The number 150 & 50 will vary as per situation. Please advise.

  1. Reading the number of files in the download folder
    -Directory.GetFiles( fold_PATH)
  2. FOR EACH (Directory.GetFiles( fold_PATH))
  • Condition
    MOVE FILE ACTIVTIES
    FROM : DOWNLOAD FOLDER PATH
    TO : a FOLDER PATH
  • Condition
    MOVE FILE ACTIVTIES
    FROM : DOWNLOAD FOLDER PATH
    TO : B FOLDER PATH
    For more information, more regularity and example data are needed.

Thanks for your answer but i want to know how to set the limit for files to move in given folder

U can set A counter say Count=1
In for each
Use cond
Say IF count<150
Then
Use file path for A folder
else
use File path B

I don’t understand what it says to set file movement limits within a given folder
I want to know what you mean by screenshots or what conditions you need