is there a command to search for a 'particular entry inside the files present in a folder' in matlab? like if i want to search for the word "hello" in all the files present in folder A.
allFiles = dir( 'G:\folder\myfilename' );
allNames = { allFiles.name };
only lets me search for a particular file in a specific folder.:(