2014-12-07 80 views

回答

0
在閱讀器功能

File f = new  File(directoryPath,filename); 
    f.createNewFile(); //to create a new file in the directory.surround with try and catch as it throws IOEXCEPTION 

return f; 

如果不存在,也可以使用f.mkdir()創建新目錄。

相關問題