window 아래의 모든 문자를 가져옵니다

580 단어 window
window 아래의 모든 문자를 가져오려면:

File[] files = File.listRoots();
		for(File f : files){
			System.out.println(f.getPath());
		}

//     Window    
			if(System.getProperties().getProperty("os.name").contains("Window"))
			{
				currentParentDir="C:"+System.getProperties().getProperty("file.separator");//      C 
				isWindowOS=true;
			}else{
				currentParentDir=System.getProperties().getProperty("file.separator");//              
			}

좋은 웹페이지 즐겨찾기