Show / Hide Table of Contents

Interface ICopyOptions

Options applied when copying directories.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface ICopyOptions
Syntax (vb)
Public Interface ICopyOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
CopyOptions copyOptions = new CopyOptions {
    Exclude = new [] { "exclude" },
    Follow = SymlinkFollowMode.NEVER,
    IgnoreMode = IgnoreMode.GLOB
};

Synopsis

Properties

Exclude

Glob patterns to exclude from the copy.

Follow

A strategy for how to handle symlinks.

IgnoreMode

The ignore behavior to use for exclude patterns.

Properties

Exclude

Glob patterns to exclude from the copy.

virtual string[] Exclude { get; }
Property Value

System.String[]

Remarks

Default: - nothing is excluded

Follow

A strategy for how to handle symlinks.

virtual Nullable<SymlinkFollowMode> Follow { get; }
Property Value

System.Nullable<SymlinkFollowMode>

Remarks

Default: SymlinkFollowMode.NEVER

IgnoreMode

The ignore behavior to use for exclude patterns.

virtual Nullable<IgnoreMode> IgnoreMode { get; }
Property Value

System.Nullable<IgnoreMode>

Remarks

Default: IgnoreMode.GLOB

Back to top Generated by DocFX