Life always has a way of doing whatever it needs to do. There’s nothing wrong with that thought process. It comes and goes without a second thought. We can’t easily figure out why life does this to us, we have to understand something at some point, but if we don’t? Well, no harm no foul. It’s life and we have to continue going forward to see everything that is out there. There’s nothing we can do about it. Life will move foreward without the ability for us to do anything but wonder what this life will eventually be like in the far distant future. Oh what a joy that could bring about. If life has a way, we will be able to get from point a to point b in no time at all. It feels like a circle at times. A = B = C, isn’t that what the crazy future guy in Star Trek: Voyager tried to explain? Yeah, something like that. It’s quite an interesting thought process to be sure. It’s life though, nothing can be done about it. So let life be what it wants to be, there’s nothing wrong with that tho...
Backing up a file in Java can be fairly simple and straight forward. Let's think about it for a second. You have a file.
- You want to be able to store a copy of that file somewhere on your file system.
- You either want to keep the original or delete the original.
- The format of the filename must be unique, so it doesn't collide with other backed up files.
There are just a few considerations to think about. Here's a solution I came up with in Java:
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.Files;
import java.io.File;
import java.util.Date;
import java.text.SimpleDateFormat;
public class Backup {
public static void main(String[] args) {
if (args.length == 1) {
File file = new File(args[0]);
if (file.exists()) {
try {
File dir = new File("archive");
if (!dir.exists()) {
dir.mkdirs();
}
Date date = new Date();
SimpleDateFormat dt = new SimpleDateFormat("'.'yyyy-MM-dd-HH-mm-ss");
Path source = Paths.get(args[0]);
Path target = Paths.get(dir.getName(), file.getName() + dt.format(date));
System.out.println("Backing up file: " + source + " --> " + target);
Files.copy(source, target);
file.delete();
} catch (Exception e) {
e.printStackTrace();
}
} else {
System.err.println("The file you specified '" + file.getName() + "' doesn't exist.");
}
}
}
}
As you can see I chose to delete the file at the end of the process. But let's take a look at what this does:
- We make sure at least one filenamne is passed in and if it exists we continue.
- We create a home for the archived file, in this example we call it archive.
- We create a date and format it.
- We set a source and a target and output that we are copying the source to the target.
- Using
Files.copywe do the actual backup. - Then we delete the file at the end of the process.
That's all there is to it. I'm sure there could be a way to refactor this so it's better somehow. I'll have to look into it.
Comments
Post a Comment