APUE 1-3程式,列出一個目錄中的所有檔案
apue.h
/*
* Our own header, to be included before all standard system headers.
*/
#ifndef _APUE_H
#define _APUE_H
#define _POSIX_C_SOURCE 200809L
#if defined(SOLARIS) /* Solaris 10 */
#define _XOPEN_SOURCE 600
#else
#define _XOPEN_SOURCE 700
#endif
#include <sys/types.h> /* some systems still require this */
#include <sys/stat.h>
#include <sys/termios.h> /* for winsize */
#if defined(MACOS) || !defined(TIOCGWINSZ)
#include <sys/ioctl.h>
#endif
#include <stdio.h> /* for convenience */
#include <stdlib.h> /* for convenience */
#include <stddef.h> /* for offsetof */
#include <string.h> /* for convenience */
#include <unistd.h> /* for convenience */
#include <signal.h> /* for SIG_ERR */
#define MAXLINE 4096 /* max line length */
/*
* Default file access permissions for new files.
*/
#define FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
/*
* Default permissions for new directories.
*/
#define DIR_MODE (FILE_MODE | S_IXUSR | S_IXGRP | S_IXOTH)
typedef void Sigfunc(int); /* for signal handlers */
#define min(a,b) ((a) < (b) ? (a) : (b))
#define max(a,b) ((a) > (b) ? (a) : (b))
/*
* Prototypes for our own functions.
*/
char *path_alloc(size_t *); /* {Prog pathalloc} */
long open_max(void); /* {Prog openmax} */
int set_cloexec(int); /* {Prog setfd} */
void clr_fl(int, int);
void set_fl(int, int); /* {Prog setfl} */
void pr_exit(int); /* {Prog prexit} */
void pr_mask(const char *); /* {Prog prmask} */
Sigfunc *signal_intr(int, Sigfunc *); /* {Prog signal_intr_function} */
void daemonize(const char *); /* {Prog daemoninit} */
void sleep_us(unsigned int); /* {Ex sleepus} */
ssize_t readn(int, void *, size_t); /* {Prog readn_writen} */
ssize_t writen(int, const void *, size_t); /* {Prog readn_writen} */
int fd_pipe(int *); /* {Prog sock_fdpipe} */
int recv_fd(int, ssize_t (*func)(int,
const void *, size_t)); /* {Prog recvfd_sockets} */
int send_fd(int, int); /* {Prog sendfd_sockets} */
int send_err(int, int,
const char *); /* {Prog senderr} */
int serv_listen(const char *); /* {Prog servlisten_sockets} */
int serv_accept(int, uid_t *); /* {Prog servaccept_sockets} */
int cli_conn(const char *); /* {Prog cliconn_sockets} */
int buf_args(char *, int (*func)(int,
char **)); /* {Prog bufargs} */
int tty_cbreak(int); /* {Prog raw} */
int tty_raw(int); /* {Prog raw} */
int tty_reset(int); /* {Prog raw} */
void tty_atexit(void); /* {Prog raw} */
struct termios *tty_termios(void); /* {Prog raw} */
int ptym_open(char *, int); /* {Prog ptyopen} */
int ptys_open(char *); /* {Prog ptyopen} */
#ifdef TIOCGWINSZ
pid_t pty_fork(int *, char *, int, const struct termios *,
const struct winsize *); /* {Prog ptyfork} */
#endif
int lock_reg(int, int, int, off_t, int, off_t); /* {Prog lockreg} */
#define read_lock(fd, offset, whence, len) \
lock_reg((fd), F_SETLK, F_RDLCK, (offset), (whence), (len))
#define readw_lock(fd, offset, whence, len) \
lock_reg((fd), F_SETLKW, F_RDLCK, (offset), (whence), (len))
#define write_lock(fd, offset, whence, len) \
lock_reg((fd), F_SETLK, F_WRLCK, (offset), (whence), (len))
#define writew_lock(fd, offset, whence, len) \
lock_reg((fd), F_SETLKW, F_WRLCK, (offset), (whence), (len))
#define un_lock(fd, offset, whence, len) \
lock_reg((fd), F_SETLK, F_UNLCK, (offset), (whence), (len))
pid_t lock_test(int, int, off_t, int, off_t); /* {Prog locktest} */
#define is_read_lockable(fd, offset, whence, len) \
(lock_test((fd), F_RDLCK, (offset), (whence), (len)) == 0)
#define is_write_lockable(fd, offset, whence, len) \
(lock_test((fd), F_WRLCK, (offset), (whence), (len)) == 0)
void err_msg(const char *, ...); /* {App misc_source} */
void err_dump(const char *, ...) __attribute__((noreturn));
void err_quit(const char *, ...) __attribute__((noreturn));
void err_cont(int, const char *, ...);
void err_exit(int, const char *, ...) __attribute__((noreturn));
void err_ret(const char *, ...);
void err_sys(const char *, ...) __attribute__((noreturn));
void log_msg(const char *, ...); /* {App misc_source} */
void log_open(const char *, int, int);
void log_quit(const char *, ...) __attribute__((noreturn));
void log_ret(const char *, ...);
void log_sys(const char *, ...) __attribute__((noreturn));
void log_exit(int, const char *, ...) __attribute__((noreturn));
void TELL_WAIT(void); /* parent/child from {Sec race_conditions} */
void TELL_PARENT(pid_t);
void TELL_CHILD(pid_t);
void WAIT_PARENT(void);
void WAIT_CHILD(void);
#endif /* _APUE_H */
my_err.h
#include <errno.h> /* for definition of errno */
#include <stdarg.h> /* ISO C variable aruments */
static void err_doit(int, int, const char *, va_list);
/*
* Nonfatal error related to a system call.
* Print a message and return.
*/
void
err_ret(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
}
/*
* Fatal error related to a system call.
* Print a message and terminate.
*/
void
err_sys(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Fatal error unrelated to a system call.
* Error code passed as explict parameter.
* Print a message and terminate.
*/
void
err_exit(int error, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, error, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Fatal error related to a system call.
* Print a message, dump core, and terminate.
*/
void
err_dump(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
abort(); /* dump core and terminate */
exit(1); /* shouldn't get here */
}
/*
* Nonfatal error unrelated to a system call.
* Print a message and return.
*/
void
err_msg(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(0, 0, fmt, ap);
va_end(ap);
}
/*
* Fatal error unrelated to a system call.
* Print a message and terminate.
*/
void
err_quit(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(0, 0, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Print a message and return to caller.
* Caller specifies "errnoflag".
*/
static void
err_doit(int errnoflag, int error, const char *fmt, va_list ap)
{
char buf[MAXLINE];
vsnprintf(buf, MAXLINE, fmt, ap);
if (errnoflag)
snprintf(buf+strlen(buf), MAXLINE-strlen(buf), ": %s",
strerror(error));
strcat(buf, "\n");
fflush(stdout); /* in case stdout and stderr are the same */
fputs(buf, stderr);
fflush(NULL); /* flushes all stdio output streams */
}
1-3.c
#include "apue.h"
#include "my_err.h"
#include<dirent.h>
int main(int argc, char *argv[])
{
DIR *dp;
struct dirent *dirp;
if (argc != 2)
err_quit("usage: ls directory_name");
if ((dp = opendir(argv[1])) == NULL)
err_sys("cant't open %s", argv[1]);
while ((dirp = readdir(dp)) != NULL)
printf("%s\n", dirp->d_name);
closedir(dp);
exit(0);
}
1-3.c程式,必須指出,apue.h 中包含的出錯例程(函式)僅用於將資訊輸出到標準錯誤;
當程式作為守護程式執行時,需要有另外的出錯例程(函式)來處理守護程式可能輸出的資訊,例如與 syslog 程式通訊並記錄到日誌等,
限於篇幅,這裡沒有整合相應的原始碼,有興趣的童鞋,請參考
《UNIX 環境高階程式設計(第三版)》一書中,第727頁開始的內容
my_LS_command_implement.c 程式的功能很簡單,它通過使用者在 shell 命令列中指定的絕對路徑,來列出該目錄下的內容
該程式第7,8行分別定義了 DIR 結構型指標與 dirent 結構型指標,用於指向後面
opendir() 與 readdir() 函式返回的內容;
1
2
|
DIR *dp; struct dirent *dirp; |
第10~11行首先判斷,使用者輸入的 shell 命令列引數個數(命令列引數個數通過 main 函式的第一個引數 argc 傳遞;命令列引數內容通過 main 函式的第二個引數 argv[] 傳遞)是否有2個,如果沒有2個,則呼叫作者編寫的標準出錯例程提醒使用者:必須指定要開啟的目錄;
1
2
|
if (argc != 2) err_quit( "usage: ls directory_name" ); |
第13~14行呼叫庫函式 opendir 開啟使用者指定的目錄,該目錄通過 argv[1] 傳遞給 opendir(),通過將後者返回的值(DIR結構型變數)賦給 dp 並判斷:如果 dp 為空指標則說明開啟目錄失敗,此時呼叫作者編寫的標準出錯例程提醒使用者:無法開啟指定的目錄;
1
2
|
if ((dp = opendir(argv[1])) == NULL) err_sys( "can't open %s" , argv[1]); |
第15~16行將指向 opendir() 成功開啟的目錄( DIR 結構型變數)的指標 dp 作為引數傳遞並在一個 while 迴圈中反覆呼叫庫函式 readdir ,將後者返回的值(dirent結構型變數)賦給 dirp 指標並判斷:如果 readdir() 讀取完目錄中的所有檔案和子目錄,此時 dirp 為空指標,退出迴圈;反之,每當 readdir() 成功讀取目錄中的一個檔案或子目錄,就列印該檔案或目錄的名稱(通過訪問 dirp 指向的 dirent結構型的 d_name 成員,該成員儲存名稱)
1
2
|
while ((dirp = readdir(dp)) != NULL) printf ( "%s\n" , dirp->d_name); |
第18行將 dp 指標作為引數傳遞並呼叫庫函式 closedir,用來關閉 opendir()開啟的目錄
1
|
closedir(dp); |
第19行使用標準的退出程式方式:以引數0呼叫 exit 函式,表示沒有錯誤,正常退出
1
|
exit (0); |
相關文章
- APUE 1-3.c列出一個目錄中的所有檔案
- 列出目錄/檔案命令ls
- 列出並排序檔案系統根目錄(/)下各個目錄的大小排序
- 兩個目錄中,刪除其中一個目錄中同名檔案的做法
- 遍歷檔案Java中遍歷出指定目錄中的所有檔案Java
- 指定目錄下的所有檔案中的字串替換字串
- 遍歷目錄下的所有檔案
- 遍歷某一個指定目錄下的所有子目錄和檔案(遞迴)遞迴
- C++檔案系統操作5 - 跨平臺列出指定目錄下的所有檔案和資料夾C++
- 如何使用Rust查詢目錄中的所有 txt 檔案?Rust
- Linux - 查詢目錄下的所有檔案中是否含某個字串Linux字串
- 【轉】linux查詢目錄下的所有檔案中是否含有某個字串Linux字串
- 獲取裝置上的某個目錄下的所有檔案
- 刪除目錄及目錄下所有檔案與子目錄 (轉)
- 複製目錄下的全部檔案到另一個目錄
- Linux查詢某個目錄下每個子目錄的所有檔案數量Linux
- 使用Java 8的Stream API列出ZIP檔案中的條目JavaAPI
- git列出所有已經跟蹤檔案Git
- 現在我要寫一個定時程式定時讀取該目錄下的所有txt檔案到資料庫,並把這些txt檔案轉移到另外一個目錄資料庫
- linux 列出一個目錄佔用的空間 du (轉)Linux
- 把object放到同一個目錄的Makefile寫法,目標檔案同一目錄Object
- 用python寫一個指令碼:將指定目錄下及其所有子資料夾的所有的“srt”檔案的內容合併到一個新的srt檔案中Python指令碼
- 檔案和目錄之stat族函式——APUE學習筆記(2)函式筆記
- NGINX小技巧–將所有目錄和目錄下所有檔案分別給與不同的許可權Nginx
- python 訪問某個目錄下特定字尾名的所有檔案Python
- 使用python遍歷一個目錄下所有的檔案併合並內容Python
- 把當前目錄檔名輸出到一個檔案
- 一個自動遞增生成目錄和檔案的cop檔案類
- 3行程式碼列出硬碟上所有檔案及資料夾行程硬碟
- 刪除當前目錄下的所有可執行檔案
- Python獲取當前目錄下所有檔案的絕對路徑並儲存在檔案中Python
- 隱藏任意程式,目錄檔案,登錄檔,埠
- linux 列出目錄樹 (轉)Linux
- Windows 複製 xcopy 檔案到另外一個 目錄Windows
- 批處理檔案:將目錄下所有的jar檔案都加到CLASSPATHJAR
- python列出資料夾所有檔案有哪些方法?Python
- 沒有目錄建目錄,沒有檔案建檔案
- 怎樣寫一個批處理檔案,定時把一個伺服器中的指定目錄拷貝到另外一臺伺服器的指定目錄中?伺服器