DaiKeung
DaiKeung

Reputation: 1167

Azure Data Factory: How to copy specific files based on file's create date?

I failed for below test case:

  1. Create new folderA on SourceContainer and insert fileA
  2. Trigger Pipelines to copy it to TargetContainer successfully
  3. Delete folderA/fileA from TargetContainer
  4. Trigger Pipelines with specific start and end time (try to not copy all folders/files again)
  5. Cannot see folderA/fileA on TargetContainer

Upvotes: 0

Views: 363

Answers (1)

Nandan
Nandan

Reputation: 4925

Within Copy activity, source features: you can mention the range of the date of the files which you need to copy:

enter image description here

And w.r.t trigger a pipeline when file is created, you can use Event trigger to achieve that.

Upvotes: 1

Related Questions