string app_path_temp = App.App_Path + "\\";
string sourcePath = System.IO.Path.Combine(app_path_temp, "Dump\\SID\\temp\\", filename1);
string destPath = System.IO.Path.Combine(app_path_temp, "Training\\", fileBaseName, "\\", filename1);
File.Copy(sourcePath, destPath, true);
When I give set the folder path as "FolderName1\FolderName2\FolderName3\ApplicationPath", the code works just fine. However when the path is like "Folder Name 1\Folder Name 2..." it doesn't work.
Shows an error "Could not find file at Folder Name 1\Folder Name 2..."