ファイル/指定したディレクトリのファイル一覧を取得する・opendir,readdir
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* 指定したディレクトリのファイル一覧を取得する・opendir,r...
opendir, readdir関数を使用して指定したディレクトリのファ...
#contents
#htmlinsertpcsp(c-top.html,c-sp.html)
* 関連記事 [#j4b62df3]
-[[テキストファイルを行単位で読み込む・fgets>ファイル/テ...
-[[ディレクトリかどうか判別する・stat>ファイル/ディレクト...
-[[指定したディレクトリのファイル一覧を取得する・opendir,...
-[[ファイルのサイズを取得する>ファイル/ファイルのサイズを...
-[[ファイルのユーザIDとグループIDを取得する>ファイル/ファ...
-[[fopenのファイルモード一覧表>ファイル/fopenのファイルモ...
-[[バイナリファイルの書き込みと読み込み・fopen,fwrite,fre...
* ファイル一覧取得のC言語サンプルコード [#k0e1e0b8]
&ref(flist.c); (改行コードLF)
#include <stdio.h>
#include <dirent.h>
int main(void)
{
DIR *dir;
struct dirent *dp;
char dirpath[] = "/tmp";
dir = opendir(dirpath);
if (dir == NULL) { return 1; }
dp = readdir(dir);
while (dp != NULL) {
printf("%s\n", dp->d_name);
dp = readdir(dir);
}
if (dir != NULL) { closedir(dir); }
return 0;
}
上記のC言語サンプルコードをコンパイルし実行した結果を以下...
尚、上記のサンプルコードは/tmpディレクトリのファイル一覧...
$ gcc flist.c -o flist
$ ./flist
.ICE-unix
.
orbit-sakura
ssh-02DfmXbG1eQw
.xfsm-ICE-YOVGJX
pulse-PKdhtXMmr18n
..
.wine-1000
.X0-lock
.X11-unix
以上、指定したディレクトリのファイル一覧を取得するC言語サ...
#htmlinsertpcsp(c-btm.html,c-sp.html)
終了行:
#navi(../)
* 指定したディレクトリのファイル一覧を取得する・opendir,r...
opendir, readdir関数を使用して指定したディレクトリのファ...
#contents
#htmlinsertpcsp(c-top.html,c-sp.html)
* 関連記事 [#j4b62df3]
-[[テキストファイルを行単位で読み込む・fgets>ファイル/テ...
-[[ディレクトリかどうか判別する・stat>ファイル/ディレクト...
-[[指定したディレクトリのファイル一覧を取得する・opendir,...
-[[ファイルのサイズを取得する>ファイル/ファイルのサイズを...
-[[ファイルのユーザIDとグループIDを取得する>ファイル/ファ...
-[[fopenのファイルモード一覧表>ファイル/fopenのファイルモ...
-[[バイナリファイルの書き込みと読み込み・fopen,fwrite,fre...
* ファイル一覧取得のC言語サンプルコード [#k0e1e0b8]
&ref(flist.c); (改行コードLF)
#include <stdio.h>
#include <dirent.h>
int main(void)
{
DIR *dir;
struct dirent *dp;
char dirpath[] = "/tmp";
dir = opendir(dirpath);
if (dir == NULL) { return 1; }
dp = readdir(dir);
while (dp != NULL) {
printf("%s\n", dp->d_name);
dp = readdir(dir);
}
if (dir != NULL) { closedir(dir); }
return 0;
}
上記のC言語サンプルコードをコンパイルし実行した結果を以下...
尚、上記のサンプルコードは/tmpディレクトリのファイル一覧...
$ gcc flist.c -o flist
$ ./flist
.ICE-unix
.
orbit-sakura
ssh-02DfmXbG1eQw
.xfsm-ICE-YOVGJX
pulse-PKdhtXMmr18n
..
.wine-1000
.X0-lock
.X11-unix
以上、指定したディレクトリのファイル一覧を取得するC言語サ...
#htmlinsertpcsp(c-btm.html,c-sp.html)
ページ名: