2.13.1 • Published 5 months ago

@xilinota/react-native-saf-x v2.13.1

Weekly downloads
-
License
AGPL-3.0-or-later
Repository
github
Last release
5 months ago

react-native-saf-x

A module to help simplify usage of scoped storages on android.

intended to use when targeting Android API level 30+

Installation

npm install react-native-saf-x

or

yarn add react-native-saf-x

Usage

After receiving a content uri using openDocumentTree function, you can use this as if like it's a normal path like we are used to. This is the intended behaviour, if you find any problems or if something does not behave as intended, please create an issue.

Note that each method can reject when there's an unexpected error or when the permission is revoked.

Example:

import { openDocumentTree, mkdir } from "react-native-saf-x";

// somewhere in the app .....

async function testIt() {
  const doc = await openDocumentTree(true);
  if (doc && doc.uri) {
    // user has selected a directory and uri is available
    // you can save this uri as base directory in your app and reuse it anywhere you want
    await mkdir(doc.uri + '/foo/bar'); // creates foo/bar folder and subfolder at selected directory
  }
}

For more examples look at example folder in the source.

Table of contents

Type aliases

Functions

Type aliases

CreateDocumentOptions

Ƭ CreateDocumentOptions: FileOperationOptions & { initialName?: string }

Defined in

index.tsx:80


DocumentFileDetail

Ƭ DocumentFileDetail: Object

Type declaration

NameType
lastModifiednumber
mime?string
namestring
size?number
type"directory" | "file"
uristring

Defined in

index.tsx:60


Encoding

Ƭ Encoding: "utf8" | "base64" | "ascii"

Defined in

index.tsx:22


FileOperationOptions

Ƭ FileOperationOptions: Object

Type declaration

NameTypeDescription
append?booleanAppend data to the file. If not set file content will be overwritten.
encoding?EncodingDefaults to 'utf8'
mimeType?stringmime type of the file being saved. Defaults to '*\/*'

Defined in

index.tsx:69

Functions

copyFile

copyFile(srcUri, destUri, options?): Promise<null | DocumentFileDetail>

Copy file from source uri to destination uri. promise Rejects if destination already exists and replaceIfDestinationExists option is not set to true. Does not support moving directories.

Parameters

NameType
srcUristring
destUristring
options?FileTransferOptions

Returns

Promise<null | DocumentFileDetail>

Defined in

index.tsx:214


createDocument

createDocument(data, options?): Promise<null | DocumentFileDetail>

Open the Document Picker to save a file. Returns an object of type DocumentFileDetail or null if user did not select a file.

Parameters

NameType
datastring
options?CreateDocumentOptions

Returns

Promise<null | DocumentFileDetail>

Defined in

index.tsx:105


createFile

createFile(uriString, options?): Promise<DocumentFileDetail>

Creates an empty file at given uri. Rejects if a file or directory exist at given uri.

Parameters

NameType
uriStringstring
options?Pick<FileOperationOptions, "mimeType">

Returns

Promise<DocumentFileDetail>

Defined in

index.tsx:150


exists

exists(uriString): Promise<boolean>

Check if there's a document located at the given uri.

Parameters

NameType
uriStringstring

Returns

Promise<boolean>

Defined in

index.tsx:117


getPersistedUriPermissions

getPersistedUriPermissions(): Promise<string[]>

Returns a list of all the persisted uri permissions.

Returns

Promise<string[]>

Defined in

index.tsx:186


hasPermission

hasPermission(uriString): Promise<boolean>

Check if you have permission to access the uri.

Parameters

NameType
uriStringstring

Returns

Promise<boolean>

Defined in

index.tsx:112


listFiles

listFiles(uriString): Promise<DocumentFileDetail[]>

List all files and folders in a directory uri.

Parameters

NameType
uriStringstring

Returns

Promise<DocumentFileDetail[]>

Defined in

index.tsx:196


mkdir

mkdir(uriString): Promise<DocumentFileDetail>

Create a directory at given uri. Automatically creates folders in path if needed. You can use it to create nested directories easily. Rejects if it fails.

Parameters

NameType
uriStringstring

Returns

Promise<DocumentFileDetail>

Defined in

index.tsx:172


moveFile

moveFile(srcUri, destUri, options?): Promise<null | DocumentFileDetail>

Move file from source uri to destination uri. promise Rejects if destination already exists and replaceIfDestinationExists option is not set to true. Does not support moving directories.

Parameters

NameType
srcUristring
destUristring
options?FileTransferOptions

Returns

Promise<null | DocumentFileDetail>

Defined in

index.tsx:229


openDocument

openDocument(persist): Promise<null | DocumentFileDetail>

Open the Document Picker to select a file. Returns an object of type DocumentFileDetail or null if user did not select a file.

Parameters

NameType
persistboolean

Returns

Promise<null | DocumentFileDetail>

Defined in

index.tsx:97


openDocumentTree

openDocumentTree(persist): Promise<null | DocumentFileDetail>

Open the Document Picker to select a folder. Read/Write Permission will be granted to the selected folder. Returns an object of type DocumentFileDetail or null if user did not select a folder.

Parameters

NameType
persistboolean

Returns

Promise<null | DocumentFileDetail>

Defined in

index.tsx:89


readFile

readFile(uriString, options?): Promise<string>

Read contents of the given uri. uri must point to a file.

Parameters

NameType
uriStringstring
options?Pick<FileOperationOptions, "encoding">

Returns

Promise<string>

Defined in

index.tsx:122


releasePersistableUriPermission

releasePersistableUriPermission(uriString): Promise<void>

Remove a uri from persisted uri permissions list.

Parameters

NameType
uriStringstring

Returns

Promise<void>

Defined in

index.tsx:191


rename

rename(uriString, newName): Promise<boolean>

Renames the document at given uri. uri can be file or folder. Resolves with true if successful and false otherwise.

Parameters

NameType
uriStringstring
newNamestring

Returns

Promise<boolean>

Defined in

index.tsx:181


stat

stat(uriString): Promise<DocumentFileDetail>

Get details for a file/directory at given uri.

Parameters

NameType
uriStringstring

Returns

Promise<DocumentFileDetail>

Defined in

index.tsx:201


unlink

unlink(uriString): Promise<boolean>

Removes the file or directory at given uri. Resolves with true if delete is successful, false otherwise.

Parameters

NameType
uriStringstring

Returns

Promise<boolean>

Defined in

index.tsx:162


writeFile

writeFile(uriString, data, options?): Promise<string>

Writes the given data to the file at given uri. Tries to create the file if does not already exist before writing to it. Resolves with given uriString if successful.

Parameters

NameType
uriStringstring
datastring
options?FileOperationOptions

Returns

Promise<string>

Defined in

index.tsx:136

Caveats

Due to simplyifing the uri structure usage, file and directories should not have the same name at a given uri. doing so can cause unexpected results. for example in a folder named "foo", do not create "bar" file and "bar" directory making the uri being "foo/bar" for both cases.


Thanks to

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT