CopyOptions
Options applied when copying directories.
Initializer
import ros_cdk_core
ros_cdk_core.CopyOptions(
exclude: typing.List[str] = None,
follow: SymlinkFollowMode = None,
ignore_mode: IgnoreMode = None
)
Properties
Name | Type | Description |
---|---|---|
exclude |
typing.List[str] |
File paths matching the patterns will be excluded. |
follow |
SymlinkFollowMode |
A strategy for how to handle symlinks. |
ignore_mode |
IgnoreMode |
The ignore behavior to use for exclude patterns. |
exclude
Optional
exclude: typing.List[str]
- Type: typing.List[str]
- Default: nothing is excluded
File paths matching the patterns will be excluded.
See ignoreMode
to set the matching behavior.
Has no effect on Assets bundled using the bundling
property.
follow
Optional
follow: SymlinkFollowMode
- Type: SymlinkFollowMode
- Default: SymlinkFollowMode.NEVER
A strategy for how to handle symlinks.
ignore_mode
Optional
ignore_mode: IgnoreMode
- Type: IgnoreMode
- Default: IgnoreMode.GLOB
The ignore behavior to use for exclude
patterns.