시작하기
설치 단계와 이 플러그인의 전체 마크다운 가이드와 함께 설정 프롬프트를 복사합니다.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-file-picker`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/file-picker/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치 제목bun add @capgo/capacitor-file-pickerbunx cap syncImport
Import 섹션import { CapgoFilePicker } from '@capgo/capacitor-file-picker';API 개요
API 개요 섹션pickFiles
파일 선택장치에서 하나 이상의 파일을 선택하세요.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.pickFiles({ types: ['application/pdf', 'image/*'], limit: 5, readData: false});console.log('Picked files:', result.files);pickImages
이미지 선택갤러리에서 하나 이상의 이미지를 선택하세요. (Android/iOS만)
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.pickImages({ limit: 10, readData: false});console.log('Picked images:', result.files);pickVideos
비디오 선택갤러리에서 하나 이상의 비디오를 선택하세요. Android/iOS 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.pickVideos({ limit: 3, skipTranscoding: true});console.log('Picked videos:', result.files);pickMedia
섹션 제목 “pickMedia”갤러리에서 하나 이상의 이미지 또는 비디오를 선택하세요. Android/iOS 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.pickMedia({ limit: 5, readData: true});console.log('Picked media:', result.files);pickDirectory
섹션 제목 “pickDirectory”장치에서 폴더를 선택하세요. Android/iOS 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.pickDirectory();console.log('Selected directory:', result.path);convertHeicToJpeg
섹션 제목 “convertHeicToJpeg”HEIC 이미지 형식을 JPEG 형식으로 변환하세요. iOS 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const result = await CapgoFilePicker.convertHeicToJpeg({ path: '/path/to/image.heic', quality: 0.9});console.log('Converted file:', result.path);copyFile
섹션 제목 “copyFile”__CAPGO_KEEP_0__을 새로운 위치로 복사합니다.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
await CapgoFilePicker.copyFile({ from: '/source/file.pdf', to: '/destination/file.pdf', overwrite: true});checkPermissions
__CAPGO_KEEP_1__ 섹션파일을 읽기 위해 권한을 확인합니다. 안드로이드 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const status = await CapgoFilePicker.checkPermissions();console.log('Read permission:', status.readExternalStorage);requestPermissions
__CAPGO_KEEP_2__ 섹션파일을 읽기 위해 권한을 요청합니다. 안드로이드 전용.
import { CapgoFilePicker } from '@capgo/capacitor-file-picker';
const status = await CapgoFilePicker.requestPermissions();if (status.readExternalStorage === 'granted') { console.log('Permission granted');}__CAPGO_KEEP_3__
__CAPGO_KEEP_3__ 섹션PickFilesOptions
__CAPGO_KEEP_4__ 섹션__CAPGO_KEEP_4__ 옵션
export interface PickFilesOptions { /** * List of accepted MIME types or file extensions. * On iOS, only MIME types are supported. * Examples: ['image/*'], ['application/pdf'], ['.pdf', '.doc'] */ types?: string[]; /** * Maximum number of files to pick. * Set to 0 for unlimited (platform default). * @default 0 */ limit?: number; /** * Whether to read the file data as base64. * Note: Reading large files may cause memory issues. * @default false */ readData?: boolean;}PickFilesResult
__CAPGO_KEEP_1__ (파일 선택 결과)__CAPGO_KEEP_2__ (파일 선택 결과).
export interface PickFilesResult { /** Array of picked files */ files: PickedFile[];}PickMediaOptions
__CAPGO_KEEP_1__ (미디어 선택 옵션)__CAPGO_KEEP_3__ (이미지/비디오 선택 옵션).
export interface PickMediaOptions { /** * Maximum number of files to pick. * Set to 0 for unlimited (platform default). * @default 0 */ limit?: number; /** * Whether to read the file data as base64. * Note: Reading large files may cause memory issues. * @default false */ readData?: boolean; /** * iOS only: Skip transcoding of videos. * @default false */ skipTranscoding?: boolean; /** * iOS 15+ only: Show ordered selection badges. * @default false */ ordered?: boolean;}PickDirectoryResult
__CAPGO_KEEP_1__ (디렉토리 선택 결과)__CAPGO_KEEP_2__ (디렉토리 선택 결과).
export interface PickDirectoryResult { /** The path to the selected directory */ path: string;}ConvertHeicToJpegOptions
__CAPGO_KEEP_1__ (HEIC를 JPEG로 변환 옵션)__CAPGO_KEEP_4__ (HEIC를 JPEG로 변환 옵션)
export interface ConvertHeicToJpegOptions { /** The path to the HEIC file to convert */ path: string; /** * The compression quality for JPEG (0.0 - 1.0). * @default 0.9 */ quality?: number;}ConvertHeicToJpegResult
__CAPGO_KEEP_1__ (HEIC를 JPEG로 변환하는 결과)HEIC를 JPEG로 변환하는 결과입니다.
export interface ConvertHeicToJpegResult { /** The path to the converted JPEG file */ path: string;}CopyFileOptions
__CAPGO_KEEP_1__ (파일 복사 옵션)파일 복사에 대한 옵션입니다.
export interface CopyFileOptions { /** Source file path */ from: string; /** Destination file path */ to: string; /** * Whether to overwrite if destination exists. * @default false */ overwrite?: boolean;}PermissionStatus
__CAPGO_KEEP_1__ (파일 접근 권한 상태)파일 접근 권한 상태입니다.
export interface PermissionStatus { /** Whether permission to read media files is granted */ readExternalStorage: PermissionState; /** Whether permission to access media location is granted */ accessMediaLocation?: PermissionState;}PickerDismissedListener
__CAPGO_KEEP_1__ (픽커 취소 이벤트 리스너)픽커 취소 이벤트가 발생했을 때 호출되는 콜백 함수입니다.
export type PickerDismissedListener = (event: null) => void;PickedFile
PickedFile선택한 파일을 나타냅니다.
export interface PickedFile { /** The name of the file */ name: string; /** The path to the file */ path?: string; /** The MIME type of the file */ mimeType: string; /** The size of the file in bytes */ size: number; /** * The base64 encoded data of the file. * Only present if readData was true. */ data?: string; /** * The Blob instance of the file. * Web only. */ blob?: Blob; /** Width in pixels (images/videos only) */ width?: number; /** Height in pixels (images/videos only) */ height?: number; /** Duration in seconds (videos only) */ duration?: number; /** Last modified timestamp in milliseconds */ modifiedAt?: number;}PermissionState
PermissionState허가 상태 값.
export type PermissionState = 'prompt' | 'prompt-with-rationale' | 'granted' | 'denied';실질적 원천
Source Of Truth이 페이지는 플러그인의 src/definitions.ts. upstream에서 변경된 경우 public API을 다시 동기화하세요.