0

How to count files and directories in Directory

Is it possible to count the number of files or directories in the particular directory..???

Linux Add a comment
ethan
asked Feb 24 2017

Answer

0
Very good. How do you protect the DB_Password in config.php? This file is owned by root, but needs to be visible by the apache account.
Add a comment
arunkumarak
asked Feb 27 2017
edited Oct 05 2018
Post your Answer
0

Another methods to find files and directories on particular directory execute below commands.....

command to find directories....

find testing -maxdepth 1 -type d -print

command to find files....

find testing -maxdepth 1 -type d -print

here testing is a particular directory name......

Add a comment
arunkumarak
asked Feb 27 2017
edited Oct 05 2018
Post your Answer