提示コードの////部ですが 外側にリストに三つの塊に分けてファイルのパスがあるのですがそれを二重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
どうすればとは?
https://teratail.com/questions/307686
これと同じ質問か。400 回近く質問してまだまともに書けないのってどういうことなんだろう。こういうのは初心者とは言わない。ただ成長してないだけ。
初心者ではなく初心者並。この二つは全然違う。
回答1件
あなたの回答
tips
プレビュー