How can using this code
string sorece = folderBrowserDialog1.SelectedPath;
string target = folderBrowserDialog2.SelectedPath;
string sourceFile = System.IO.Path.GetFullPath(sorece);
string targetPath = System.IO.Path.GetFullPath(target);
System.IO.Directory.Move(sourceFile, targetPath);
i can move Folders ? please help