🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
C#

C#はマルチパラダイムプログラミング言語の1つで、命令形・宣言型・関数型・ジェネリック型・コンポーネント指向・オブジェクティブ指向のプログラミング開発すべてに対応しています。

Q&A

解決済

1回答

502閲覧

List<List<string>>型を順番に画面に表示させたい 二重for文のような形で

退会済みユーザー

退会済みユーザー

総合スコア0

C#

C#はマルチパラダイムプログラミング言語の1つで、命令形・宣言型・関数型・ジェネリック型・コンポーネント指向・オブジェクティブ指向のプログラミング開発すべてに対応しています。

0グッド

1クリップ

投稿2020/12/03 14:13

提示コードの////部ですが 外側にリストに三つの塊に分けてファイルのパスがあるのですがそれを二重for文のうな形で全部画面に改行の空白を混ぜて画面に表示したいのですがどうすればいいのでしょうか?
※ 提示コードだと三回分全部画面に表示され一重for文だとエラーが出ます。

cs

1using System; 2using System.IO; 3using System.Collections.Generic; 4using System.Linq; 5using System.Text; 6using System.Threading.Tasks; 7using System.Diagnostics; 8 9 10namespace MusicFile_Encoder 11{ 12 class Encorder 13 { 14 public Encorder() 15 { 16 //System.Console.WriteLine("コンストラクタ\n"); 17 } 18 19 20 21 public static void Tree_Recursive(string folderPath, ref List<string> list) 22 { 23 foreach (String fname in Directory.EnumerateFiles(folderPath)) 24 { 25 list.Add(fname); 26 } 27 IEnumerable<String> folders = Directory.EnumerateDirectories(folderPath); 28 if (folders.Count() == 0) 29 { 30 return; 31 } 32 else 33 { 34 foreach (String dname in folders) 35 { 36 Tree_Recursive(dname, ref list); 37 } 38 } 39 } 40 41 42 43 44 // メイン 45 public void Update() 46 { 47 48 //Console.Write("File Path > "); 49 string name = "C:\Users\yw325\Desktop\Music"; 50 //string name = Console.ReadLine(); 51 List<string> str = new List<string>(); 52 Tree_Recursive(name,ref str); 53 54 List<string> index = new List<string>(); 55 List<List<string>> index_path = new List<List<string>>(); //エンコードをかけるファイルパス 56 //Dictionary<string,string> index = new Dictionary<string,string>(); 57 58 59 bool b = false; 60 string t = ""; 61 foreach(string st in str) 62 { 63 string s = System.IO.Path.GetDirectoryName(st); 64 if ( s != t) 65 { 66 t = s; 67 if(b == true){ //最初の-を無視 68 index.Add("-"); 69 } 70 index.Add(s); 71 }else{ 72 index.Add(s); 73 } 74 //Console.WriteLine(s); 75 b = true; 76 } 77 index.Add("-"); 78 79 80 81 // パスを分ける 82 List<string> id = new List<string>(); 83 foreach(string x in index) 84 { 85 if(x != "-") 86 { 87 id.Add(x); 88 }else{ 89 index_path.Add(id); 90 } 91 } 92 93 94 95 96 97 98 99 100///////////////////////////////////////////////////////////////////// 101 Console.WriteLine("表示"); 102 foreach(var s in index_path) 103 { 104 foreach(var e in s) 105 { 106 Console.WriteLine(e); 107 } 108 } 109 110/////////////////////////////////////////////////////////////////// 111 112 113 114 115 116 117 Console.ReadKey(); 118 } 119 120 } 121 122 class Program 123 { 124 125 126 static void Main(string[] args) 127 { 128 Encorder enc = new Encorder(); 129 130 enc.Update(); 131 132 133 134 135 // Console.ReadKey(); 136 } 137 } 138} 139

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

Zuishin

2020/12/03 14:56

どうすればとは?
Zuishin

2020/12/04 07:39 編集

https://teratail.com/questions/307686 これと同じ質問か。400 回近く質問してまだまともに書けないのってどういうことなんだろう。こういうのは初心者とは言わない。ただ成長してないだけ。 初心者ではなく初心者並。この二つは全然違う。
guest

回答1

0

ベストアンサー

コード読んだだけで雰囲気回答します。
「三回分全部画面に表示され」て、3つの塊(おそらく音楽ファイルを3フォルダに分けたているはず)にならないのは、「// パスを分ける」のところのロジックのせいではないでしょうか。

index_path.Add するときはフォルダが変わるとき、ですよね。であれば、そのとき id に入っている List を new して作り直さないと、id.Add は常に一つのリストに Add し続けるので、全部のファイルが id に含まれ、それが index_path にフォルダの数だけ重複してセットされそうです。

あと、windows っぽいですし、visualstudio のデバッグ実行でブレークポイント使いながら、どの変数になにが入っているか確認しつつ動作を追ってみるといいかもです。確かListの中身も表示してくれるはずなので。

投稿2020/12/03 20:42

papinianus

総合スコア12705

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問