How to count number of files in directory and write to new file with number of files and their name?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to count number of files in directory and write to new file with number of files and their name?
# 15  
Old 12-09-2012
file names are not coming..
# 16  
Old 12-09-2012
Pls post the output of the stat cmd alone.
# 17  
Old 12-09-2012
Shell script approach, you have to pass absolute path as argument to this script:-
Code:
#!/bin/ksh

_DIR=$1
_SEQ=1

if [ $# -ne 1 ]
then
        echo "Usage: <script> <absolute path>"
        exit 1
fi

dir_count=$( find "${_DIR}" -path "${_DIR}/*" -prune -name "*" -type f | wc -l )

if [ $dir_count -ne 0 ]
then
        echo "Number of files in directory: $_DIR = $dir_count"
        for file in $( find "${_DIR}" -path "${_DIR}/*" -prune -name "*" -type f )
        do
                echo "${_SEQ}. $( basename $file )"; _SEQ=$( expr $_SEQ + 1 )
        done
else
        echo "No files found in directory: $_DIR"
fi

# 18  
Old 12-09-2012
Try this, using -1 option of ls:
Code:
~/unix.com$ ls -1 | awk '{A[NR]=$0}END{print "Number of files in directory = "NR; while(i++<NR)print i"."A[i]}'

# 19  
Old 12-09-2012
Code:
find . -maxdepth 1 -type f -printf "%f|" | awk '{printf "Number of files: %s\n",NF;gsub(/\|/,"\n")}1' FS="|"

# 20  
Old 12-10-2012
You can try this..Suppose vikram.txt is your file in which you want to save all the file and the number of files .

Code:
#!/bin/sh
vikram=$(ls |grep -v vikram.txt | wc -l)
vikram1=$(echo "Number of files ="$vikram"")
echo $vikram1 > vikram.txt
ls | grep -v vikram.txt |  cat -n >> vikram.txt

# 21  
Old 12-10-2012
Perhaps something like this?

Code:
{ echo "Number of files in the directory = `find . -maxdepth 1 -type f|wc -l`";find . -maxdepth 1 -type f -printf "%f\n"|cat -n ;} >../pathtodir/count.txt


Last edited by edehont; 12-10-2012 at 09:13 AM.. Reason: forgot maxdepth...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Count number of pattern matches per line for all files in directory

I have a directory of files, each with a variable (though small) number of lines. I would like to go through each line in each file, and print the: -file name -line number -number of matches to the pattern /comp/ for each line. Two example files: cat... (4 Replies)
Discussion started by: pathunkathunk
4 Replies

2. Shell Programming and Scripting

Count the number of subset of files in a directory

hi I am trying to write a script to count the number of files, with slightly different subset name, in a directory for example, in directory /data, there are a subset of files that are name as follow /data/data_1_(1to however many).txt /data/data_2_(1 to however many).txt... (12 Replies)
Discussion started by: piynik
12 Replies

3. UNIX for Dummies Questions & Answers

Write the total number of rows in multiple files into another file

Hello Friends, I know you all are busy and inteligent too... I am stuck with one small issue if you can help me then it will be really great. My problem is I am having some files i.e. Input.txt1 Input.txt2 Input.txt3 Now my task is I need to check the total number of rows in... (4 Replies)
Discussion started by: malaya kumar
4 Replies

4. Shell Programming and Scripting

How to count the number of files starting with a pattern in a Directory

Hi! In our current directory there are around 35000 files. Out of these a few thousands(around 20000) start with, "testfiles9842323879838". I want to count the number of files that have filenames starting with the above pattern. Please help me with the command i could use. Thank... (7 Replies)
Discussion started by: atechcorp
7 Replies

5. UNIX for Dummies Questions & Answers

Count number of files in directory excluding existing files

Hi, Please let me know how to find out number of files in a directory excluding existing files..The existing file format will be unknown..each time.. Thanks (3 Replies)
Discussion started by: ammu
3 Replies

6. Shell Programming and Scripting

perl script on how to count the total number of lines of all the files under a directory

how to count the total number of lines of all the files under a directory using perl script.. I mean if I have 10 files under a directory then I want to count the total number of lines of all the 10 files contain. Please help me in writing a perl script on this. (5 Replies)
Discussion started by: adityam
5 Replies

7. UNIX for Dummies Questions & Answers

Read directory files and count number of lines

Hello, I'm trying to create a BASH file that can read all the files in my working directory and tell me how many words and lines are in that file. I wrote the following code: FILES="*" for f in "$FILES" do echo -e `wc -l -w $f` done My issue is that my file is outputting in one... (4 Replies)
Discussion started by: jl487
4 Replies

8. Shell Programming and Scripting

Count the number of files with only the partial file name

I have 1800 files in a directory. The file name is like out_cpty_XXXX. The "XXXX" vaires from file to file. I want to get the count of files with file name out_cpty_XXXX. How to get the count with just the partial file name? Any help would be appreciated? (4 Replies)
Discussion started by: Sangtha
4 Replies

9. Shell Programming and Scripting

count number of files in a directory

what's the script to do that? i want to only count the number of files in that directory, not including any sub directories at all (5 Replies)
Discussion started by: finalight
5 Replies

10. Shell Programming and Scripting

Count the number of files in a directory

Hi All, How do i find out the number of files in a directory using unix command ? (14 Replies)
Discussion started by: Raynon
14 Replies
Login or Register to Ask a Question