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 is 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 sources 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.

Properties

convertVirtualFileToType?

optional convertVirtualFileToType: string

Only 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.

fileName

fileName: string

The 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

uri

uri: string

The 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; }

Properties

kind

kind: "UTType" | "mimeType" | "extension"

the kind of value you're passing

value

value: string

the 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

Properties

isKnown

isKnown: boolean

On 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.

mimeType

mimeType: string | null

the mime type for the given value, if any

preferredFilenameExtension

preferredFilenameExtension: string | null

the preferred filename extension for the given value, if any

UTType

UTType: string | null

the UTType identifier for the given value, if any


KeepLocalCopyOptions

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

options for keepLocalCopy

Properties

destination

destination: "cachesDirectory" | "documentDirectory"

files

files: NonEmptyArray<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.


NonEmptyArray

NonEmptyArray<T> = [T, ...T[]]

Type Parameters

Type Parameter
T

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 contains 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"; NULL_PRESENTER: "NULL_PRESENTER"; 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.

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<[LocalCopyResponse, ...LocalCopyResponse[]]>

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<[LocalCopyResponse, ...LocalCopyResponse[]]>


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<[SaveDocumentsResponse, ...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<[SaveDocumentsResponse, ...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

Properties

allowMultiSelection?

optional allowMultiSelection: boolean

Whether to allow multiple files to be picked. False by default.

allowVirtualFiles?

optional allowVirtualFiles: boolean

Android only - Whether to allow virtual files (such as Google docs or sheets) to be picked. False by default.

presentationStyle?

optional presentationStyle: PresentationStyle

iOS only - Controls how the picker is presented, e.g. on an iPad you may want to present it fullscreen. Defaults to pageSheet.

transitionStyle?

optional transitionStyle: TransitionStyle

iOS 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?

optional 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; }

Properties

convertibleToMimeTypes

convertibleToMimeTypes: VirtualFileMeta[] | null

Android: 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.

error

error: string | null

Error in case the file metadata could not be obtained.

hasRequestedType

hasRequestedType: boolean

Android: Some document providers on Android (especially those popular in Asia, it seems) do not respect the request for limiting selectable file types. hasRequestedType is 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.

isVirtual

isVirtual: boolean | null

Android: whether the file is a virtual file (such as Google docs or sheets). This is null on pre-Android 7.0 devices. On iOS, it's always false.

name

name: string | null

The name of the picked file, including the extension. It's very unlikely that it'd be null but in theory, it can happen.

nativeType

nativeType: string | null

The "native" type of the picked file: on Android, this is the MIME type. On iOS, it is the UTType identifier.

size

size: number | null

The size of the picked file in bytes.

type

type: string | null

The MIME type of the picked file.

uri

uri: string

The 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; }

Properties

extension

extension: string | null

The registered extension for the given MIME type. Note that some MIME types map to multiple extensions.

This call returns the most common extension for the given MIME type.

Example: pdf

mimeType

mimeType: string

The 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

Properties

presentationStyle?

optional presentationStyle: PresentationStyle

iOS only - Controls how the picker is presented, e.g. on an iPad you may want to present it fullscreen. Defaults to pageSheet.

transitionStyle?

optional transitionStyle: TransitionStyle

iOS 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.

Properties

uri

uri: string

The (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

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.

Properties

copy?

optional copy: boolean

iOS-only: Whether to copy the file to a new location, or move it (default). On Android, file is always copied.

fileName?

optional fileName: string

Android-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?

optional mimeType: string

Android-only: The MIME type of the file to be stored. It is recommended to provide this value, otherwise the system tries to infer it from the sourceUri using ContentResolver.

sourceUris

sourceUris: string[]

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.

Properties

error

error: string | null

Error in case the file could not be written or some metadata could not be obtained.

name

name: string | null

The name of the file that user entered, including extension.

uri

uri: string

The target URI - the one user saved to. This is a percent-encoded content:// uri (Android), or a file:// uri (iOS).