오늘은 간단하게 사용 가능한 파일이동 함수를 알아보겠음... A 위치에서 B 위치고 파일을 이동시키고 싶을 때 미디어파일이나 기타등등 파일이동을 시키고 싶은 때 간단하게 사용가능한 함수를 공유합니다 Function : MOVE_FILE /** * @param context : Context * @param inputPath : 원본 파일 Path * @param inputFile : 원본 파일 이름 * @param outputPath : 옮길 폴더 경로 */ public static void MOVE_FILE(Context context, String inputPath, String inputFile, String outputPath){ InputStream in = null; OutputStream o..