listFiles
Retrieve a list of files from a specified directory to manage project files efficiently in Expo-based React Native development environments.
Instructions
List files in a directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directoryPath | Yes | The path to the directory to list files from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"directoryPath": {
"description": "The path to the directory to list files from",
"type": "string"
}
},
"required": [
"directoryPath"
],
"type": "object"
}