[R] 디렉토리 존재하지 않을 경우 폴더 생성 if (!file.exists("C:/Users/새로운폴더")){ dir.create("C:/Users/새로운폴더") } 데이터 분석/[R] 기초 2021.11.22
[Python] 디렉토리에 폴더 생성 - 디렉토리에 해당 파일 존재 유무 확인 import os os.path.isfile("C:/User/파일.txt") # True or False 반환 - 디렉토리에 해당 파일이 존재 하지 않으면 파일 생성 if not os.path.isdir("C:/User/파일.txt"): os.mkdir("C:/User/파일.txt") 데이터 분석/[Python] 기초 2020.09.02