f.File.download()

f.File.download(filekey, target, directory)

개요

f.File.download를 통해 FlexFile에 저장되어있는 파일을 다운로드할 수 있습니다.

파라미터

파라미터명필수여부타입제약사항설명

filekey

Yes

String

다운로드 할 파일의 파일키입니다. 이 값으로 어떤 파일인지 탐색하기 때문에 필수입니다.

target

No

String

'user' 또는 'tenant'

파일의 공유 범위에 대한 옵션입니다. 기본값은 'tenant'입니다.

directory

Yes

String

다운로드 할 파일의 이름을 입력합니다.

예시

// 파일을 다운로드 합니다.
const fileKey = _collections.activeSector.fileKey;
const boundary = _collections.activeSector.boundary;
const directory = _collections.activeSector.directory; 
f.File.download(fileKey, boundary, directory);

Last updated