Skip to content

CopyOptions

Options applied when copying directories.

Initializer

import com.aliyun.ros.cdk.core.CopyOptions;
CopyOptions.builder()
//  .exclude(java.util.List<java.lang.String>)
//  .follow(SymlinkFollowMode)
//  .ignoreMode(IgnoreMode)
    .build();

Properties

Name Type Description
exclude java.util.List File paths matching the patterns will be excluded.
follow SymlinkFollowMode A strategy for how to handle symlinks.
ignoreMode IgnoreMode The ignore behavior to use for exclude patterns.

excludeOptional

public java.util.List<java.lang.String> getExclude();
  • Type: java.util.List
  • 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.


followOptional

public SymlinkFollowMode getFollow();

A strategy for how to handle symlinks.


ignoreModeOptional

public IgnoreMode getIgnoreMode();

The ignore behavior to use for exclude patterns.