当前位置: 技术问答>java相关
java里怎么怎样可以将这个目录和目录内的所有文件以及子目录一次全删掉阿
来源: 互联网 发布时间:2015-05-13
本文导语: java里怎么怎样可以将这个目录和目录内的所有文件以及子目录一次全删掉阿 | 你要写程序检索目录,将目录和父目录放在Hashtable中.多次 调用删除。我只能提供方法,还有很多东西要加。 ...
java里怎么怎样可以将这个目录和目录内的所有文件以及子目录一次全删掉阿
|
你要写程序检索目录,将目录和父目录放在Hashtable中.多次
调用删除。我只能提供方法,还有很多东西要加。
Hashtable folders = new Hashtable() ;
public boolean deleteFolder(String sFilePath)
{
File file = new File(sFilePath);
if(!file.exists())
{
file = null;
return false;
}
try
{
folders.remove(getFolder(sFilePath));
}
catch(Exception exception)
{
exception.printStackTrace();
return false;
}
file.delete();
file = null;
return true;
}
public Folder getFolder(String s)
throws MessagingException
{
Object obj = (Folder)folders.get(s);
if(obj == null)
{
if(!hasFolder(s))
throw new MessagingException("The Folder isn't exists");
}
return ((Folder) (obj));
}
调用删除。我只能提供方法,还有很多东西要加。
Hashtable folders = new Hashtable() ;
public boolean deleteFolder(String sFilePath)
{
File file = new File(sFilePath);
if(!file.exists())
{
file = null;
return false;
}
try
{
folders.remove(getFolder(sFilePath));
}
catch(Exception exception)
{
exception.printStackTrace();
return false;
}
file.delete();
file = null;
return true;
}
public Folder getFolder(String s)
throws MessagingException
{
Object obj = (Folder)folders.get(s);
if(obj == null)
{
if(!hasFolder(s))
throw new MessagingException("The Folder isn't exists");
}
return ((Folder) (obj));
}