= Issue 231 == Short Description "Skip all" for errors that occur during a file transfer operation == Long Description As suggested in the [http://www.mucommander.com/forums/viewtopic.php?f=2&t=938 forums]: adding a "Skip all" button when an error occurs in a multiple file move / copy operation would be a nice feature to have. == Feature Description % BASE muCommander has a feature that copies/moves files selected by a user. When a user tries to execute a copy, muCommander shows a dialog to specify a destination directory. Pushing the Copy button in the dialog starts a copy process. If an error occurred during the copying of a file, then an error dialog shows a message and asks the user to skip the file, retry to copy the file, or cancel the copy process. % CORE The new feature is ``Skip All.'' The dialog to specify a destination directory has a new check box with the caption is ``Skip errors.'' If a user checked the box, then muCommander automatically skips a file if an error occurred, without showing a dialog. The error message dialog also has a new button ``Skip all.'' If the button is pushed, then muCommander shows no error dialog in further errors, as ``Skip errors'' is checked. % TASK Please locate all methods added or modified for the new feature. ``Method'' does NOT include class declaration, abstract methods without method body, and static initializers of classes. == Gold Set com.mucommander.job.FileJob.setAutoSkipErrors(boolean) com.mucommander.job.FileJob.showErrorDialog(String,String) com.mucommander.job.FileJob.showErrorDialog(String,String,String,int) com.mucommander.job.TransferFileJob.tryCopyFile(AbstractFile,AbstractFile,boolean,String) com.mucommander.ui.dialog.file.TransferDestinationDialog.TransferDestinationDialog(MainFrame, FileSet, String, String, String, String) com.mucommander.ui.dialog.file.TransferDestinationDialog.startJob(ResolvedDestination)