Skip to content

WalkRemoteTreeOptions

Defined in: src/sync/walkRemoteTree.ts:15

Options accepted by walkRemoteTree.

PropertyTypeDescriptionDefined in
filter?RemoteTreeFilterOptional filter applied before yielding and before descending into directories.src/sync/walkRemoteTree.ts:27
followSymlinks?booleanWhether to follow symlinks during traversal. Defaults to false.src/sync/walkRemoteTree.ts:25
includeDirectories?booleanWhether to include directory entries in the output. Defaults to true.src/sync/walkRemoteTree.ts:21
includeFiles?booleanWhether to include file entries in the output. Defaults to true.src/sync/walkRemoteTree.ts:23
maxDepth?numberMaximum traversal depth. 0 walks only the root listing. Unbounded by default.src/sync/walkRemoteTree.ts:19
recursive?booleanWhether to descend into subdirectories. Defaults to true.src/sync/walkRemoteTree.ts:17
signal?AbortSignalOptional abort signal that interrupts traversal between listings.src/sync/walkRemoteTree.ts:29