문제 설명
타임스탬프가 있는 ADF 파일 이름 (ADF File Name with Time stamp)
아래 형식으로 ADF Blob에 파일을 저장해야 하는 요구 사항이 있습니다. Folder1(폴더 이름) ‑‑> (폴더2)날짜(YYYYMMDD) ‑‑> (폴더3)시간(HHMM) ‑‑> 파일(파일 이름)
예: ABC ‑‑> 20220221 ‑‑> 14:00 ‑‑> XYZ.json
폴더 값을 어떻게 동적으로 전달할 수 있나요?
미리 감사합니다.
참조 솔루션
방법 1:
You can parameterize the sink dataset.
Create parameters for folder name and filenames in the dataset path fields.
Example usage in copy activity:
FolderName:
@concat('Folder1Name','/','Folder2Name',formatDateTime(utcNow(), 'yyyyMMdd'),'/','Folder3Name',formatDateTime(utcNow(), 'HH:mm'))
Result:
(by Vaishnavi、KarthikBhyresh‑MT)