Posts by Fernando • 1 point
1 post
-
-1
votes1
answer1802
viewsA: Copy content from a folder with all subfolders and files into a new one
public void copiaDiretorio(string input,string output) { if (!Directory.Exists(output)) { Directory.CreateDirectory(output); } if…