jAudioFeatureExtractor.GeneralTools
クラス FileMethods

java.lang.Object
  上位を拡張 jAudioFeatureExtractor.GeneralTools.FileMethods

public class FileMethods
extends java.lang.Object

A holder class for static methods relating to files.

作成者:
Cory McKay

コンストラクタの概要
FileMethods()
           
 
メソッドの概要
static void copyFile(java.lang.String original, java.lang.String destination)
          Copies the contents of one file to another.
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

FileMethods

public FileMethods()
メソッドの詳細

copyFile

public static void copyFile(java.lang.String original,
                            java.lang.String destination)
                     throws java.lang.Exception
Copies the contents of one file to another. Throws an exception if the destination file already exists or if the original file does not exist.

パラメータ:
original - The name of the file to be copied.
destination - The name of the file to be copied to.
例外:
java.lang.Exception