recursive property

bool? get recursive

If set to true, means that any intermediate directories will also be created (as with the shell command mkdir -p).

Intermediate directories are created with the same permissions.

When recursive is set to true, succeeds silently (without changing any permissions) if a directory already exists at the path, or if the path is a symlink to an existing directory.

@default {false}

Implementation

_i2.bool? get recursive => _i3.getProperty(
      this,
      'recursive',
    );
set recursive (bool? value)

Implementation

set recursive(_i2.bool? value) {
  _i3.setProperty(
    this,
    'recursive',
    value ?? _i6.undefined,
  );
}