FileChannel을 이용한 안드로이드 파일 복사 화면에서의 버튼을 누르면 지정한 폴더의 파일 -> 다른 폴더로 복사되는 코드 test.dat 이라는 파일을 TestFolder 파일이 없으면 새로 만든 후, 폴더에 복사하는 코드. public class fileCopy extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.activity_main); final Button mButton = (Button) this.findViewById(R.id.button_copy); final String strNewFolder ..