1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.nuvole.util;
|
| import cn.hutool.core.io.FileUtil;
| import org.junit.Test;
|
| /**
| * @author ChenLong
| * @version 1.0
| * @ClassName FileUtilTest
| * @date 2019/8/2 17:40
| */
| public class FileUtilTest {
|
| @Test
| public void testTouch() {
| FileUtil.touch("d://test1/test.txt");
| }
|
| }
|
|