Illegal characters in path using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Collections; namespace folderGenerater { class Program { static void Main(string[] args) { using (StreamReader sr = new StreamReader("E:\\TDDOWNLOAD\\u6(1).doc")) { ArrayList al = new ArrayList();
while (sr.Peek() != -1) { al.Add(sr.ReadLine());
}
for(int i = 0;i<al.Count;i++) {
String para = al[i].ToString(); String path = @"D:\\u0926\\"+para ;