Name

SPVM::File::Find::Info - Information about Currently Processed File

Description

File::Find::Info class in SPVM has methods to get and set information about a currently processed file.

Usage

File::Find->new->find(method : void ($info : File::Find::Info) {
  
  my $file_name = $info->name;
  
}, $top_dir);

Fields

name

has name : ro string;

The complete pathname to the file.

See $File::Find::name in File::Find wanted function for details.

prune

has prune : rw byte;

If this value is a true value, prunes the tree.

See $File::Find::prune in File::Find wanted function for details.

See Also

Copyright & License

Copyright (c) 2025 Yuki Kimoto

MIT License