Как сделать линию между большим количеством строк
я сделал программу, которая находит новые файлы в двух папках, однако вот что она выводит: file.txtfile.txtfile.txt
и я хотел бы его вывести:
file.txt
file.txt
file.txt
пожалуйста, кто-нибудь может мне помочь
Что я уже пробовал:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; namespace WindowsFormsApp3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { FolderBrowserDialog fdb = new FolderBrowserDialog(); if (fdb.ShowDialog() == System.Windows.Forms.DialogResult.OK) oldtextbox.AppendText(fdb.SelectedPath); } private void button3_Click(object sender, EventArgs e) { string oldpath = oldtextbox.Text; string newpath = newtextbox.Text; string str = oldpath; string str1 = newpath; List<string> strs = new List<string>(); string[] files = Directory.GetFiles(str); for (int i = 0; i < (int)files.Length; i++) { strs.Add(Path.GetFileName(files[i])); } List <string> strs1 = new List<string>(); string[] strArrays = Directory.GetFiles(str1); for (int j = 0; j < (int)strArrays.Length; j++) { strs.Add(Path.GetFileName(strArrays[j])); } #T H E T E X T I S U N D E R H E R E richTextBox1.AppendText(string.Concat(strs)); } private void button1_Click(object sender, EventArgs e) { FolderBrowserDialog fdb = new FolderBrowserDialog(); if (fdb.ShowDialog() == System.Windows.Forms.DialogResult.OK) newtextbox.AppendText(fdb.SelectedPath); } } }