This object holds the information produced by findInFilesAsync and replaceInFilesAsync methods.
interface FindInFilesResult {
// Properties
readonly ${filesSearched}: number;
readonly ${foldersSearched}: number;
readonly ${bytesProcessed}: number;
readonly ${filesMatched}: number;
}
// This interface is not available in managed environment
// This interface is not available in native environment
readonly filesSearched: number;
// This property is not available in managed environment
// This property is not available in native environment
Total number of files searched.
readonly foldersSearched: number;
// This property is not available in managed environment
// This property is not available in native environment
Total number of folders searched.
readonly bytesProcessed: number;
// This property is not available in managed environment
// This property is not available in native environment
Total bytes processed.
readonly filesMatched: number;
// This property is not available in managed environment
// This property is not available in native environment
Total files matched.