일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바배열예제
- 2020정보처리기사실기정리
- html기초
- spring crud
- jsp 팝업띄우기
- spring crud게시판
- CRUD게시판만들기
- 자바기초
- 프로그래머스 SQL
- 프로그래머스 MYSQL
- 날짜지정팝업
- 게시판만들기
- PLSQL
- 2020정보처리기사실기
- jsp 날짜팝업
- js datepicker
- 스프링 crud
- 오버라이딩
- 스프링 CRUD게시판
- 자바 정규표현식 예제
- crud게시판
- 오라클설치
- Oracle기초
- 스프링게시판만들기
- 정보처리기사실기정리
- 정처기실기정리
- jsp게시판만들기
- 2020정보처리기사실기요약
- 프로그래머스 쿼리문
- 자바연산자
Archives
- Today
- Total
영보의 SystemOut.log
[Mac] 자바에서 파일 생성/삭제/폴더생성/폴더삭제 해보기 본문
반응형
Windows에서는 \ 로 쓰이던 경로와 C드라이브가
Mac에서는 / 와 User로 쓰여서 헷갈려서 적어본다.
package twoDay;
import java.io.*;
public class FIleTest {
public static void main( String [] args) throws Exception {
// full path
File file = new File("/Users/hyeonboyeong/Desktop/education/sample.txt");
System.out.println("존재 여부 : " + file.exists());
System.out.println("폴더 여부 : " + file.isDirectory());
System.out.println("파일 여부 : " + file.isFile());
System.out.println("파일 생성 : " + file.createNewFile());
System.out.println("파일 삭제 : " + file.delete());
System.out.println("--------------------------");
// dir path
File dir = new File("/Users/hyeonboyeong/Desktop/education/sample");
System.out.println("폴더 생성 : " + dir.mkdir());
System.out.println("폴더 여부 : " + dir.isDirectory());
System.out.println("--------------------------");
// file name
File f = new File("test.txt");
System.out.println("파일 경로 : " + f.getAbsolutePath());
System.out.println("--------------------------");
// dir + file
File ff = new File(dir, "simple.txt");
System.out.println("파일 생성 : " + ff.createNewFile());
System.out.println("파일 크기 : " + ff.length());
System.out.println("--------------------------");
File updateFile = new File("/Users/hyeonboyeong/Desktop/education", "sample.txt");
System.out.println("파일명 변경 : " + ff.renameTo(updateFile));
}
}
콘솔
finder에서 확인
반응형
'Language > JAVA' 카테고리의 다른 글
[JAVA] 선택정렬(Selection Sort) 동작과정/예제 (0) | 2023.10.18 |
---|---|
JAVA 랜덤 숫자 맞추기 게임 (0) | 2023.10.17 |
[Java] 열거형 Enum / 열거형 Enum 예제 (0) | 2021.10.05 |
[Java] 게시판 게시물 게시기간 설정하기 - 시간 지나면 게시물 숨기기 (1) | 2021.08.04 |
[Java]IndexOutOfBoundsException: Index: 0, Size: 0 에러 (0) | 2021.07.28 |