/*
 * TODO:
 * 
 * Fill in the body of the method of the following class.
 * What you are essentially doing is copying the contents
 * of one file to another.
 * 
 **/

import java.io.*;

/** A class that copies files */
public class FileCopier{
  
  
   /**
   * A new file containing the contents of file i.
   * @param i the name of the file.
   * @throws IOException if there is a problem reading from i.
   */
  public static void copy(String inFile, String outFile) throws IOException{   
  
  
  }
  
}
