Cである指定したディレクトリ以下のサブディレクトリも含む全てのファイルを表示するプログラムを書いてみた。 というか書いて気づいたけどぶっちゃけ再帰と言ったら怒られるような気持ち悪い再帰になってるので配列か何かでファイル一覧を返すようにしたほうがいいと思った。 本当に表示しかできないですなこれ... 応用しようがない。 #include<stdio.h> #include<dirent.h> #include<string.h> //FS is file separator const char const FS[] = "/";//Rewrite this line if you use this on windows. int printfiles(const char* name){ DIR* d; struct dirent *dp; if((d = opendir(name)) =