码迷,mamicode.com
首页 > 其他好文 > 详细

IO目录常用操作2

时间:2021-01-21 10:47:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:nbsp   建立   rgba   常用操作   exist   color   sts   txt   file   


//建立文件夹 File f=new File("user"); System.out.println(f.createNewFile()); //建立文件 File wj = new File("user.txt"); File wj2=new File(".","user2.txt"); System.out.println(wj.createNewFile()); System.out.println(wj2.createNewFile()); //删除文件 if (f.exists()) f.delete(); if (wj.exists()) wj.delete(); if (wj2.exists()) wj2.delete();

 

IO目录常用操作2

标签:nbsp   建立   rgba   常用操作   exist   color   sts   txt   file   

原文地址:https://www.cnblogs.com/Gu1015/p/14304550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!