File fileCheck = new File("C:\파일"); if (fileCheck.isFile() ) { //파일이 존재하면 } else { //존재하지 않으면 } ---------------------------------------------------------------------------------- // 복사 원본 파일 File orgFile = new File("/home/myhome/ff.sh"); // 복사 사본 파일 File newFile = new File("/home/youhome/ff.sh"); BufferedInputStream bis = null; BufferedOutputStream bos = null; byte[] buf = new byte[1024 * 2]; in..