Attaching File

HI,

Doing a little project here. I am trying to get multiple files uploaded one by one in Oracle MES. Trying to experiment extracting multiple CSVs to a temp folder and uploading a file one by one in the system. and then moving it to a archive folder after upload.

I can’t find the activity to do this actually.

@Ting_Chun

Try below expression to get all files from particular folder.

      arrFiles [] = Directory.GetFiles("FolderPath")

And then use ForEach loop to iterate one by one file to upload into application.

  ForEach item in arrFiles
     Pass item to upload
2 Likes