package file;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.IOException;
public class CreateFile {
public static void main(String[] args) {
}
// new File(String pathname)
@Test
public void create01() throws IOException {
String filePath= "d:/news.txt";
File file = new File(filePath);
file.createNewFile();
}
// new File(File parent,String child) 父目录文件+子路径构建
@Test
public void create02() throws IOException {
File parentfile = new File("d:/");
String fileName= "news2.txt";
File file = new File(parentfile, fileName);
file.createNewFile();
}
// new File(File parent,String child) 父目录文件+子路径构建
@Test
public void create03() throws IOException {
String parentPath = "d:/";
String fileName= "news3.txt";
File file = new File(parentPath, fileName);
file.createNewFile();
}
}