From 8081d3996f6168dad08723d1935a53d0d0036013 Mon Sep 17 00:00:00 2001 From: chenpuhao Date: Mon, 26 Dec 2022 20:25:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=95=B4=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E7=9A=84=E9=BB=98=E8=AE=A4=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/en/Function/Collation.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/en/Function/Collation.java b/src/main/java/en/Function/Collation.java index 98739b7..fc7a2b7 100644 --- a/src/main/java/en/Function/Collation.java +++ b/src/main/java/en/Function/Collation.java @@ -59,11 +59,11 @@ public void run() { } catch (IOException e) { throw new RuntimeException(e); } - File word = new File(data + "\\word文件"); - File txt = new File(data + "\\txt文件"); - File pdf = new File(data + "\\pdf文件"); - File powerpoint = new File(data + "\\powerpoint文件"); - File excel = new File(data + "\\excel文件"); + File word = new File(data + "\\word"); + File txt = new File(data + "\\txt"); + File pdf = new File(data + "\\pdf"); + File powerpoint = new File(data + "\\powerpoint"); + File excel = new File(data + "\\excel"); if (!pdf.exists()) {//如果文件夹不存在 pdf.mkdir();//创建文件夹 }