Storypost | 2016.03.16
|
The .11 line is notorious for this problem, especially the 1.5TB version. The only HDDs I've had ever problems with were Seagate drives, and both were .11 drives. My issue was different - very high error counts which caused very poor performance from sector reallocation. That whole line was very problematic. |
package file_copy; import java.io.File; import java.io.FileOutputStream; import java.io.PrintWriter; import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; import java.util.List; import java.util.Random; public class Main { public static void main(String args[]) { String dir = "[dir name]"; StringBuffer log = new StringBuffer(); // Define file locations. File destination_super = new File("[new dir]"); File source_super = new File("[old dir]"); File destination = new File(destination_super, dir); File source = new File(source_super, dir); if (!destination.exists()) { destination.mkdir(); } File last_file = null; int count = 0; // Keep track of files copied. int fails = 0; // Let a few failures occur before bailing. try { if (source.exists()) { // Randomize the files in the directory, this will avoid hitting // bad sectors repeatedly. Random random = new Random(); log.append("Running: " + source.getAbsolutePath() + " " + source.listFiles().length + " files\n"); List<File> files = new ArrayList<File>(); for (File file : source.listFiles()) { if (files.size() == 0) { files.add(file); } else { files.add(random.nextInt(files.size()), file); } } // Walk the randomized file list. for (File file : files) { File target = new File(destination, file.getName()); // Don't try to go deep, just inform user of a subdirectory. if (file.isDirectory()) { log.append("Skipped subdirectory: " + file.getAbsolutePath() + "\n"); } last_file = target; if (!target.exists()) { try { count++; Files.copy(Paths.get(file.getAbsolutePath()), Paths.get(target.getAbsolutePath())); } catch (Exception e) { log.append("Failed on " + last_file.getAbsolutePath() + "\n"); fails++; if (fails > 7) { throw e; } } } } log.append("Finished " + source.getAbsolutePath() + " " + source.listFiles().length + " files\n"); } else { log.append("Could not find: " + source.getAbsolutePath()); } } catch (Exception e) { log.append("Failed on " + last_file + " " + count + " completed\n"); log.append(e.getMessage()); } try { PrintWriter writer = new PrintWriter( new FileOutputStream(new File("C:\\data\\output.txt"))); writer.write(log.toString()); writer.close(); System.exit(0); } catch (Exception e) { System.exit(1); } } }
2016.04.03
All gamesThe Division, Broforce, and Helldivers |
2016.02.20
Moving earthA motorsports fan judges Monster Jam (and gets booed). Cities: Skylines, Helldivers, and Fallout 4. |
2020.02.11
WhistlerA ski trip to Whistler. |
foxglovesecurity.com
What Do WebLogic, WebSphere, JBoss, Jenkins, OpenNMS, and Your Application Have in Common? This Vulnerability.By @breenmachine What? The most underrated, underhyped vulnerability of 2015 has recently come to my attention, and I'm about to bring it to yours. No one gave it a fancy name, there were no press releases, nobody called Mandiant to come put out the fires. In fact, even though proof of concept code was released... |
www.stackchief.com
Java Multithreading ExamplesJava multithreading examples including two ways of multithreading, good examples, avoiding deadlock, and how many threads can run. |
zikani.hashnode.dev
Generating random project names using Chichewa wordsModern day developers are no strangers to automatically generated project names, these have become common and you may run into them if you use for example: Vercel for deploying projects Fly.io Docker (Desktop) ... and many other modern tools that... |