Re: File::Find report file count per directory

2017-06-28 Thread Harry Putnam
jimsgib...@gmail.com (Jim Gibson) writes: [...] > I don’t see how the code you have posted can possibly produce the > output you have reported. The code above looks like error checking > that the user of the program has entered one argument, and that > argument is the name of a directory. Egad,

Re: File::Find report file count per directory

2017-06-28 Thread Harry Putnam
jimsgib...@gmail.com (Jim Gibson) writes: [...] > I don’t see how the code you have posted can possibly produce the > output you have reported. The code above looks like error checking > that the user of the program has entered one argument, and that > argument is the name of a directory. Egad,

Re: File::Find report file count per directory

2017-06-28 Thread Jim Gibson
On Jun 28, 2017, at 2:10 PM, Harry Putnam wrote: > > 1) I want to count numeric named files in each directory. > > 2) I want to capture the name of the directory those files are in > > 3) I want to print the directory name and the count (if any) for each > directory. > > I know that all the i

File::Find report file count per directory

2017-06-28 Thread Harry Putnam
1) I want to count numeric named files in each directory. 2) I want to capture the name of the directory those files are in 3) I want to print the directory name and the count (if any) for each directory. I know that all the information I want to extract is available in File::Find. Just havi