locateFile(DriveManager._PRECISION_MEDIUM);
} else if (e.getActionCommand().equals("locateFileLP")) {
locateFile(DriveManager._PRECISION_LOWEST);
} else if (e.getActionCommand().equals("moveFile")) {
BrowserDialog dialog = new BrowserDialog(DcResources.getText("msgSelectnewLocation"), null);
File newDir = dialog.showSelectDirectoryDialog(this, null);
if (newDir != null) {
try {
File newFile = new File(newDir, file.getName());
Utilities.rename(file, newFile);