FileCopyOptions
Options applied when copying directories into the staging location.
Initializer
using AlibabaCloud.SDK.ROS.CDK.Core;
new FileCopyOptions {
string[] Exclude = null,
SymlinkFollowMode FollowSymlinks = null,
IgnoreMode IgnoreMode = null
};
Properties
Name | Type | Description |
---|---|---|
Exclude |
string[] |
File paths matching the patterns will be excluded. |
FollowSymlinks |
SymlinkFollowMode |
A strategy for how to handle symlinks. |
IgnoreMode |
IgnoreMode |
The ignore behavior to use for exclude patterns. |
Exclude
Optional
public string[] Exclude { get; set; }
- Type: string[]
- 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.
FollowSymlinks
Optional
public SymlinkFollowMode FollowSymlinks { get; set; }
- Type: SymlinkFollowMode
- Default: SymlinkFollowMode.NEVER
A strategy for how to handle symlinks.
IgnoreMode
Optional
public IgnoreMode IgnoreMode { get; set; }
- Type: IgnoreMode
- Default: IgnoreMode.GLOB
The ignore behavior to use for exclude
patterns.