请用创建目录(),如要检测文件夹名字为C:\AAA,那么就创建目录(“C:\AAA”),如果存在会返回假,不存在返回真,然后创建了目录怎么办呢,可以用删除目录()命令,然后不存在创建一个指定名字的文件夹,这样不难,假设指定文件夹名为C:\BBB,那么还是创建目录(“C:\BBB”)。可以用如果()、判断()、如果真()命令来判断。
package test1701import java.io.FileInputStream
import java.io.IOException
public class Test10 {
public static void main(String[] args){
String path = "文件路径"
FileInputStream fileInputStream = null
try {
fileInputStream = new FileInputStream(path)
if(fileInputStream.available() == 0){
System.out.println("文件为空")
}
} catch (Exception e) {
e.printStackTrace()
}finally{
if(fileInputStream != null){
try {
fileInputStream.close()
} catch (IOException e) {
e.printStackTrace()
}
}
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)