return File from createDirectory
This commit is contained in:
parent
40a2dd9e56
commit
0a96fa9f37
|
@ -324,8 +324,9 @@ public class Utilities {
|
|||
// }
|
||||
}
|
||||
|
||||
public static void createDirectory(String path) throws IOException{
|
||||
new CSFile(path).mkdirs();
|
||||
public static File createDirectory(String path) throws IOException{
|
||||
new CSFile(path).mkdirs();
|
||||
return new File(path);
|
||||
}
|
||||
|
||||
public static String changeFileExt(String name, String ext) {
|
||||
|
|
Loading…
Reference in New Issue