in reply to Re^2: how to get the all the subdirectories path from the directory
in thread how to get the all the subdirectories path from the directory
We can use the
@all_files = `find . -depth` ; // From the current directory
@all_files = `find /path/ -depth` ; // To get all the paths from the path .
Regards,
Sravan