package autofschk;

import java.io.File;

/**
 * ファイルシステムの更新チェック.
 */
public class AutoFileUpdateCheckTest {

	/**
	 * アプリケーション.
	 * @param args 引数
	 * @throws Exception 例外
	 */
	public static void main(String[] args) throws Exception {
		File chkPath = new File("C:/Temp/");
		AutoFileUpdateCheck check = new AutoFileUpdateCheck(chkPath, true, 1000);
		check.start();
		Thread.sleep(60*1000L);
		check.stop();
	}

}
