我想通过目录路径字符串读取文件, 例如,我希望此方法返回相应的文件:
文件阅读器(String pathFile){.... return File;}
File reader(String pathFile){
return File;}
答案 0 :(得分: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()创建新目录。