Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. package br.unisc.main;
  2.  
  3. import java.io.File;
  4.  
  5. /**
  6.  *
  7.  * @author Rô Kunz
  8.  */
  9. public class Aula6 {
  10.  
  11.     public void criaPasta(String AulaPOOII){
  12.         new File("C:\\Users\\Rô Kunz\\Desktop\\Aula6\\AulaPOOII\\Programacao\\Java\\2015").mkdirs();    
  13.     }
  14.      
  15.     public void criaPastaComplemento(String AulaPOOII){
  16.         new File("C:\\Users\\Rô Kunz\\Desktop\\Aula6\\AulaPOOII\\OrientacaoObjeto\\Turma\\Montenegro").mkdirs();
  17.     }
  18.    
  19.     public static void main(String[] args){
  20.         Aula6 teste = new Aula6();
  21.         teste.criaPasta("AulaPOOII");
  22.        
  23.         Aula6 teste2 = new Aula6();
  24.         teste2.criaPastaComplemento("AulaPOOII");
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement