前提・実現したいこと
1つのフォルダに入っているすべてのテキストファイルをcsvに出力するツールの作成。
発生している問題・エラーメッセージ
1 : int (*)(dirent*)’ から ‘int (*)(const dirent*)’ への無効な変換です 2 : エラー: expected ‘;’ before ‘}’ token
該当のソースコード
C++
1 2#include <stdio.h> 3#include <dirent.h> 4#include <sys/types.h> 5#include <stdib.h> 6#include <string.h> 7 8int selects(struct dirent *dir){ 9 if(dir->d_name[0])=='*.INI'){ 10 return (0); 11 } 12} 13 14int main(int argc,char **argv){ 15 16 DIR *dr; 17 const char *dir=*(argv+1); 18 struct dirent **fileList; 19 dr=opendir(dir); 20 int i=scandir(dir,&fileList,selects,NULL); 21 22 23 24 25 26 27 28} 29 30 31 32 33 34 35 36 37
試したこと
グーグルにて使えそうな関数を検索
selects関数なしだとコンパイルは通りました。
補足情報(FW/ツールのバージョンなど)
C++はじめたての初心者です。
丸投げのような形の質問になっておりました。申し訳ございません。
上記ソースは「.ini」ファイルを仮に当てはめています。
流れとして、
①フォルダ読み込み
②ファイル抽出
③ファイルの一行ずつ読み込む
④","を後ろに入れながらファイル出力
というイメージです。
まず第1,2段階のフォルダオープンからのファイル抽出ができません。
また、そのあとの流れもこのままでよいかわからず、手詰まりになっています。
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー