Move files with a specific Name

Hi,

I searched a lot in the topics, but i didnt reach the solution.
I have a lot of FILES (named A1,A2…A10 and B1,B2…B10) in a FOLDER, but i’d like to move only the fils that contain a specific Names (A).
Can you tell me the workflow and the variables(also with the scope and the type?) i have to use?

Thank you all.

1 Like

Use the filter option while getting the list of files.

arrayFileList[] = Directory.GetFiles(folderPath,"A*.*)

Will return all the files starts with ‘A’.

1 Like

@TrailBlazer

StrFiles [ ] = Directory.GetFiles(“FolderPath”,“A*.*”)

The above one will give all files with starting with A.Then use For Each loop to itreate that array and inside use Move file Activity to move one by one files to other folder.

2 Likes

Guys these are the files, I have a lot of files starting with “FISCALIT” (sometimes they end with A’, sometimes with A), and i like only the files that start with “FISCALIT”

This is the workflow that you suggested

1 Like

These are the properties of the Move file

1 Like

This is the error that i dont understand

Sorry for the multiposting, but i am a new user and can upload only one photo

@TrailBlazer

Goto Move File Activity properties, specify From path as item but not “C:\Users.…” blah blah… then it should work.

If you face any issues then let me know.

Hi @TrailBlazer

I have created workflow based on your requirement before run this workflow please change
Move File Activity property Destination path.

MoveFIles.zip (12.7 KB)

1 Like

the path change to item.tostring then it should be fine