Skip to main content

document-picker API

Type Aliases

BookmarkingResponse

BookmarkingResponse: {bookmark: string;bookmarkStatus: "success"; } | {bookmarkError: string;bookmarkStatus: "error"; }

If you've requested long-term access to a directory or file, this object will be returned in the response. In order to access the same directory or file in the future, you must store the bookmark opaque string, and then pass it to the document viewer if you want to preview the file.

See the Document viewer source on how to retrieve the file from the bookmark, if you need to do that (advanced use case).


FileToCopy

FileToCopy: {convertVirtualFileToType: string;fileName: string;uri: string; }

Parameter of keepLocalCopy. Object type representing the file(s) whose copy should be kept in the app's storage.

Type declaration

NameTypeDescription
convertVirtualFileToType?stringOnly for Android virtual files: the type of the file to export to. For example, application/pdf or text/plain. Use one of the values from convertibleToMimeTypes from the response of the pick() method: DocumentPickerResponse.
fileNamestringThe name of the resulting file, with the file extension. You can use the name field from the response of the pick() method. Example: someFile.pdf
uristringThe uri to keep a local copy of. This would be a content:// uri (Android), or a file:// uri (iOS) that the user has previously picked.

IsKnownTypeOptions

IsKnownTypeOptions: {kind: "UTType" | "mimeType" | "extension";value: string; }

Type declaration

NameTypeDescription
kind"UTType" | "mimeType" | "extension"the kind of value you're passing
valuestringthe value you're checking, for example: application/pdf, com.adobe.pdf, pdf

IsKnownTypeResponse

IsKnownTypeResponse: {isKnown: boolean;mimeType: string | null;preferredFilenameExtension: string | null;UTType: string | null; }

The result of calling isKnownType

Type declaration

NameTypeDescription
isKnownbooleanOn iOS, this is true if the type is known to the device. That means it can be used with the document picker to filter what files can be picked. On Android, this is true if the internal mime type database contains the given value.
mimeTypestring | nullthe mime type for the given value, if any
preferredFilenameExtensionstring | nullthe preferred filename extension for the given value, if any
UTTypestring | nullthe UTType identifier for the given value, if any

KeepLocalCopyOptions

KeepLocalCopyOptions: {destination: "cachesDirectory" | "documentDirectory";files: NonEmptyArray<FileToCopy>; }

options for keepLocalCopy

Type declaration

NameType
destination"cachesDirectory" | "documentDirectory"
filesNonEmptyArray<FileToCopy>

KeepLocalCopyResponse

KeepLocalCopyResponse: NonEmptyArray<LocalCopyResponse>

Result of the call to keepLocalCopy. Please note the promise always resolves, even if there was an error processing any uri(s) (as indicated by the status field, and copyError field).


LocalCopyResponse

LocalCopyResponse: {localUri: string;sourceUri: string;status: "success"; } | {copyError: string;sourceUri: string;status: "error"; }

Indicates, for each Uri that was passed to keepLocalCopy, whether the local copy was successfully created or not.

If the copy was successful, the status field is success and localUri contains the local Uri. If the copy was not successful, the status field is error and copyError field contains the error message.


PredefinedFileTypes

PredefinedFileTypes: Flatten<AllMimeTypes> | AllAppleUTIs

You'd rarely use this type directly. It represents the predefined file types which are exported as types and can be used to limit the kinds of files that can be picked.

Example

import {
pick,
types,
} from '@react-native-documents/picker'
// ...
const result = await pick({
type: [types.pdf, types.docx],
})

PresentationStyle

PresentationStyle: "fullScreen" | "pageSheet" | "formSheet" | "overFullScreen" | undefined

iOS only. Configure the presentation style of the picker.


ReleaseLongTermAccessResult

ReleaseLongTermAccessResult: ({status: "success";uri: string; } | {errorMessage: string;status: "error";uri: string; })[]

For each uri whose release was requested, the result will contain an object with the uri and a status.


TransitionStyle

TransitionStyle: "coverVertical" | "flipHorizontal" | "crossDissolve" | "partialCurl" | undefined

iOS only. Configure the transition style of the picker.

Variables

errorCodes

const errorCodes: Readonly<{IN_PROGRESS: "ASYNC_OP_IN_PROGRESS";OPERATION_CANCELED: "OPERATION_CANCELED";UNABLE_TO_OPEN_FILE_TYPE: "UNABLE_TO_OPEN_FILE_TYPE"; }>

Error codes that can be returned by the module, and are available on the code property of the error.

Type declaration

NameType
IN_PROGRESS"ASYNC_OP_IN_PROGRESS"
OPERATION_CANCELED"OPERATION_CANCELED"
UNABLE_TO_OPEN_FILE_TYPE"UNABLE_TO_OPEN_FILE_TYPE"

Example

  const handleError = (err: unknown) => {
if (isErrorWithCode(err)) {
switch (err.code) {
case errorCodes.IN_PROGRESS:
...
break
case errorCodes.UNABLE_TO_OPEN_FILE_TYPE:
...
break
case errorCodes.OPERATION_CANCELED:
// ignore
break
default:
console.error(err)
}
} else {
console.error(err)
}
}

Functions

isErrorWithCode()

isErrorWithCode(error: any): error is NativeModuleError

TypeScript helper to check if an object has the code property. This is used to avoid as casting when you access the code property on errors returned by the module.

Parameters

ParameterType
errorany

Returns

error is NativeModuleError


releaseLongTermAccess()

releaseLongTermAccess(uris: string[]): Promise<ReleaseLongTermAccessResult>

Android only - Releases long-term access to the given URIs. There's no need to call this method on iOS - there's no iOS equivalent.

See Android documentation for more information.

Parameters

ParameterType
urisstring[]

Returns

Promise<ReleaseLongTermAccessResult>


releaseSecureAccess()

releaseSecureAccess(uris: string[]): Promise<null>

iOS only - Releases (stops) secure access to the given URIs. Use with URIs obtained with Open mode or with the Directory Picker. See iOS documentation for more information. There's no need to call this method on Android - there's no equivalent method on Android.

Parameters

ParameterType
urisstring[]

Returns

Promise<null>

DocumentPicker

isKnownType()

isKnownType(options: IsKnownTypeOptions): IsKnownTypeResponse

Checks if the given value (which can be a file extension, UTType identifier or mime) is known to the system. Also returns the mime type which you can use to filter files on Android.

Parameters

ParameterType
optionsIsKnownTypeOptions

Returns

IsKnownTypeResponse


keepLocalCopy()

keepLocalCopy(options: KeepLocalCopyOptions): Promise<KeepLocalCopyResponse>

Makes the file available in the app's storage. The behavior is different on iOS and Android, and for simple use cases (such as uploading file to remote server), you may not need to call this method at all.

On Android, it can be used to "convert" a content:// Uri into a local file. It also "exports" virtual files (such as Google docs or sheets) into local files.

However, note that for some use cases, such as uploading the picked file to a server, you may not need to call keepLocalCopy at all. React Native's fetch can handle content:// uris.

Parameters

ParameterType
optionsKeepLocalCopyOptions

Returns

Promise<KeepLocalCopyResponse>


pick()

pick<O>(options?: O): PickResponse<O>

The method for picking a file, both for import and open modes.

For result types, see DocumentPickerResponse or DocumentPickerResponseOpenLongTerm.

For options, see DocumentPickerOptionsImport, DocumentPickerOptionsOpenOnce or DocumentPickerOptionsOpenLongTerm.

Type Parameters

Type Parameter
O extends DocumentPickerOptions

Parameters

ParameterType
options?O

Returns

PickResponse<O>


pickDirectory()

pickDirectory<O>(options?: O): PickDirectoryResponse<O>

Opens a directory picker.

Type Parameters

Type Parameter
O extends DirectoryPickerOptions

Parameters

ParameterType
options?O

Returns

PickDirectoryResponse<O>


saveDocuments()

saveDocuments(options: SaveDocumentsOptions): Promise<NonEmptyArray<SaveDocumentsResponse>>

The method for opening a "save as" dialog and saving source file(s) to a new location.

On Android, only one file can be saved at a time.

Parameters

ParameterType
optionsSaveDocumentsOptions

Returns

Promise<NonEmptyArray<SaveDocumentsResponse>>

pick() types

DocumentPickerOptionsBase

DocumentPickerOptionsBase: {allowMultiSelection: boolean;allowVirtualFiles: boolean;presentationStyle: PresentationStyle;transitionStyle: TransitionStyle;type: string | PredefinedFileTypes | (PredefinedFileTypes | string)[]; }

Base options object for the document picker. You'd rarely use this type directly, but instead use one of

DocumentPickerOptionsImport, DocumentPickerOptionsOpenOnce or DocumentPickerOptionsOpenLongTerm

which extend this type

Type declaration

NameTypeDescription
allowMultiSelection?booleanWhether to allow multiple files to be picked. False by default.
allowVirtualFiles?booleanAndroid only - Whether to allow virtual files (such as Google docs or sheets) to be picked. False by default.
presentationStyle?PresentationStyleiOS only - Controls how the picker is presented, e.g. on an iPad you may want to present it fullscreen. Defaults to pageSheet.
transitionStyle?TransitionStyleiOS only - Configures the transition style of the picker. Defaults to coverVertical, when the picker is presented, its view slides up from the bottom of the screen.
type?string | PredefinedFileTypes | (PredefinedFileTypes | string)[]Specify file type(s) that you want to pick. Use types for some predefined values.

DocumentPickerOptionsImport

DocumentPickerOptionsImport: DocumentPickerOptionsBase & {mode: "import";requestLongTermAccess: never; }

Present the document picker in import mode.

Type declaration

NameType
mode?"import"
requestLongTermAccess?never

DocumentPickerOptionsOpenLongTerm

DocumentPickerOptionsOpenLongTerm: DocumentPickerOptionsBase & {mode: "open";requestLongTermAccess: true; }

Present the document picker in open mode, with long-term permissions to access the opened file.

Type declaration

NameType
mode"open"
requestLongTermAccesstrue

DocumentPickerOptionsOpenOnce

DocumentPickerOptionsOpenOnce: DocumentPickerOptionsBase & {mode: "open";requestLongTermAccess: false; }

Present the document picker in open mode, with permissions to access the file for a limited time (until the app terminates).

Type declaration

NameType
mode"open"
requestLongTermAccess?false

DocumentPickerResponse

DocumentPickerResponse: {convertibleToMimeTypes: VirtualFileMeta[] | null;error: string | null;hasRequestedType: boolean;isVirtual: boolean | null;name: string | null;nativeType: string | null;size: number | null;type: string | null;uri: string; }

Type declaration

NameTypeDescription
convertibleToMimeTypesVirtualFileMeta[] | nullAndroid: The target types the virtual file can be converted to. Useful for keepLocalCopy. This field is only present if isVirtual is true, and only on Android 7.0+. Always null on iOS.
errorstring | nullError in case the file metadata could not be obtained.
hasRequestedTypebooleanAndroid: Some document providers on Android (especially those popular in Asia, it seems) do not respect the request for limiting selectable file types. hasRequestedType will be false if the user picked a file that does not have one of the requested types. You need to do your own post-processing and display an error to the user if this is important to your app. Always true on iOS.
isVirtualboolean | nullAndroid: whether the file is a virtual file (such as Google docs or sheets). Will be null on pre-Android 7.0 devices. On iOS, it's always false.
namestring | nullThe name of the picked file, including the extension. It's very unlikely that it'd be null but in theory, it can happen.
nativeTypestring | nullThe "native" type of the picked file: on Android, this is the MIME type. On iOS, it is the UTType identifier.
sizenumber | nullThe size of the picked file in bytes.
typestring | nullThe MIME type of the picked file.
uristringThe URI of the picked file. This is a percent-encoded content:// uri (Android), or a file:// uri (iOS).

DocumentPickerResponseOpenLongTerm

DocumentPickerResponseOpenLongTerm: DocumentPickerResponse & BookmarkingResponse

The result of calling pick with mode: 'open' and requestLongTermAccess: true


VirtualFileMeta

VirtualFileMeta: {extension: string | null;mimeType: string; }

Type declaration

NameTypeDescription
extensionstring | nullThe registered extension for the given MIME type. Note that some MIME types map to multiple extensions. This call will return the most common extension for the given MIME type. Example: pdf
mimeTypestringThe MIME type of the file. This is necessary to export the virtual file to a local file. Example: application/pdf

pickDirectory() types

DirectoryPickerOptions

DirectoryPickerOptions: DirectoryPickerOptionsBase & {requestLongTermAccess: boolean; }

Options for pickDirectory.

Type declaration

NameType
requestLongTermAccessboolean

DirectoryPickerOptionsBase

DirectoryPickerOptionsBase: {presentationStyle: PresentationStyle;transitionStyle: TransitionStyle; }

Base options object for the directory picker. They only slightly influence the appearance of the picker modal on iOS. You'd rarely use this type directly, but instead use DirectoryPickerOptions

which extend this type

Type declaration

NameTypeDescription
presentationStyle?PresentationStyleiOS only - Controls how the picker is presented, e.g. on an iPad you may want to present it fullscreen. Defaults to pageSheet.
transitionStyle?TransitionStyleiOS only - Configures the transition style of the picker. Defaults to coverVertical, when the picker is presented, its view slides up from the bottom of the screen.

DirectoryPickerResponse

DirectoryPickerResponse: {uri: string; }

This object represents the response from the directory picker, when long-term access was not requested.

Type declaration

NameTypeDescription
uristringThe (percent-encoded) directory selected by user.

DirectoryPickerResponseLongTerm

DirectoryPickerResponseLongTerm: DirectoryPickerResponse & BookmarkingResponse

This object represents the response from the directory picker, when long-term access was requested.


PickDirectoryResponse<O>

PickDirectoryResponse<O>: Promise<O extends DirectoryPickerOptionsLongTerm ? DirectoryPickerResponseLongTerm : DirectoryPickerResponse>

You likely won't use this type directly, but instead use DirectoryPickerResponse or DirectoryPickerResponseLongTerm.

Type Parameters

Type Parameter
O extends DirectoryPickerOptions

saveDocuments() types

SaveDocumentsOptions

SaveDocumentsOptions: {copy: boolean;fileName: string;mimeType: string;sourceUris: string[]; }

Options object for the saveDocuments method. sourceUris is the only required field.

Type declaration

NameTypeDescription
copy?booleaniOS-only: Whether to copy the file to a new location, or move it (default). On Android, file is always copied.
fileName?stringAndroid-only: The suggested title of the file to be stored, which will be pre-filled in the UI. On iOS, the target name is taken from the source uri, and is changeable only when exactly one file is being saved.
mimeType?stringAndroid-only: The MIME type of the file to be stored. It is recommended to provide this value, otherwise the system will try to infer it from the sourceUri using ContentResolver.
sourceUrisstring[]The source URIs of the files to save, percentage-encoded. Android only allows to save one file at a time, iOS allows multiple.

SaveDocumentsResponse

SaveDocumentsResponse: {error: string | null;name: string | null;uri: string; }

The result of calling saveDocuments. It is very unlikely that the metadata fields would be null, but in theory, it can happen.

Type declaration

NameTypeDescription
errorstring | nullError in case the file could not be written or some metadata could not be obtained.
namestring | nullThe name of the file that user entered, including extension.
uristringThe target URI - the one user saved to. This is a percent-encoded content:// uri (Android), or a file:// uri (iOS).