Be sure you have read Chapter 3.
Answer the following questions. You may write out your answers by hand or using a word processor or other program, but please submit hard copy, either in class or in my mailbox in the department office.
Do as many of the following optional programming problems as you have the time and inclination to do. Submit your program source (and any other needed files) by sending mail to bmassing@cs.trinity.edu, with each file as an attachment. Please use a subject line that mentions the course number and the assignment (e.g., ``csci 4320 homework 4''). You can develop your programs on any system that provides the needed functionality, but I will test them on one of the department's Fedora 11 Linux machines, so you should probably make sure they work in that environment before turning them in.
Here is sample output for running the program with = /lib, , and , on Xena00:
Results for directory /lib with blocksize 4096: 1124 files of size 1 blocks 1232 files of size 2 blocks 811 files of size 3 blocks 380 files of size 4 blocks 287 files of size 5 blocks 158 files of size 6 blocks 161 files of size 7 blocks 132 files of size 8 blocks 115 files of size 9 blocks 86 files of size 10 blocks 61 files of size 11 blocks 40 files of size 12 blocks 38 files of size 13 blocks 25 files of size 14 blocks 23 files of size 15 blocks 20 files of size 16 blocks 10 files of size 17 blocks 20 files of size 18 blocks 29 files of size 19 blocks 24 files of size 20 blocks 274 files of size 21 blocks or more
(Of course, you won't be able to examine files in directories you don't have access to. Just print error messages for files/directories you can't access.)
To get maximum points, your program should be in C or C++ and make no use of system commands such as ls. (You can use another language, or even write a shell script, but you will get fewer points.) Library functions opendir, readdir, and lstat will probably be helpful. You might also be interested in functions chdir and strerror. These functions are described by man pages. (Remember also that man -a foo gives all man pages for foo. This can be helpful if there is both a command foo and a functionfoo.)
Here is some starter code that parses/checks the command-line arguments.
Broken symbolic links in /users/bmassing/Local/HTML-Documents/CS4320/Homeworks/HW04/Problems: /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/barfoo /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/foobar
(Again, you won't be able to examine files in directories you don't have access to, so just print error messages. You should be able to access everything in the above directory, however. If you want to create some test data of your own, remember that to make a symbolic link called sym pointing to foo, you type ln -s foo sym.)
To get maximum points, your program should be in C or C++ and make no use of system commands such as ls. (You can use another language, or even write a shell script, but you will get fewer points.) The library routines mentioned for the previous problem may be helpful. The starter code may also be helpful, in reminding you how to access command-line arguments in C.
Files with multiple hard links in /users/bmassing/Local/HTML-Documents/CS4320/Homeworks/HW04/Problems: /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/bbbb /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/b /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/bb /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/bbb /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/dd /users/bmassing/Local/HTML-Documents/Classes/CS4320_2009fall/Homeworks/HW04/Problems/TestData/d
This output means that the two pathnames in the first group reference the same file, the four pathnames in the second group reference the same file, etc. Output can be in any order as long as paths that reference the same file are grouped together. (Again, you won't be able to examine files in directories you don't have access to, so just print error messages. You should be able to access everything in the above directory, however. If you want to create some test data of your own, remember that to make a hard link called sym pointing to foo, you type ln foo sym.)
To get maximum points, your program should be in C or C++ and make no use of system commands such as ls. (You can use another language, or even write a shell script, but you will get fewer points.) The library routines mentioned for the previous problems may be helpful. The starter code may also be helpful, in reminding you how to access command-line arguments in C.