我想删除这样的文件:
List<FichierModels> liste = fichiers.GetFichiersFromDirectoy(_directory_id);
//supprimer les fichiers expirés
foreach (Models.FichierModels fich in liste)
{
if (fich.Expiration_date < DateTime.Now)
{
System.IO.File.Delete(fich.Url);
fich.Delete_fichier(fich.Id);
}
}
public List<FichierModels> GetFichiersFromDirectoy(int _id_dir)
{
List<FichierModels> l = new List<FichierModels>();
Data.Connect();
using (Data.connexion)
{
string queryString = @"select Id, Id_directory, Url, Upload_date, Last_download, Downloads_count, Taille, Expiration_date, Name from Fichier where Id_directory = @Id_directory ";
SqlCommand command = new SqlCommand(queryString, Data.connexion);
command.Parameters.AddWithValue("@Id_directory", _id_dir);
try
{
SqlDataReader reader = command.ExecuteReader();
do
{
while (reader.Read())
{
FichierModels fichier = new FichierModels();
fichier.Id = reader.GetInt32(0);
fichier.Id_directory = reader.GetInt32(1);
fichier.Url = reader.GetString(2);
fichier.Upload_date = reader.GetDateTime(3);
fichier.Last_download = reader.GetDateTime(4);
fichier.Downloads_count = reader.GetInt32(5);
fichier.Taille = reader.GetDouble(6);
fichier.Expiration_date = reader.GetDateTime(7);
fichier.Name = reader.GetString(8) ;
l.Add(fichier);
}
} while (reader.NextResult());
return l;
}
catch { return null; }
}
}
我使用了这个功能:
public void ExtractArchive(string zipFilename, string ExtractDir)
{
ZipInputStream zis = null;
FileStream fos = null;
try
{
zis = new ZipInputStream(new FileStream(zipFilename, FileMode.Open, FileAccess.Read));
ZipEntry ze;
// on dezippe tout dans un rep du nom du zip, pas en bordel
Directory.CreateDirectory(ExtractDir);
while ((ze = zis.GetNextEntry()) != null)
{
if (ze.IsDirectory)
{
Directory.CreateDirectory(ExtractDir + "\\" + ze.Name);
}
else
{
if (!Directory.Exists(ExtractDir + "\\" + Path.GetDirectoryName(ze.Name)))
{
Directory.CreateDirectory(ExtractDir + "\\" + Path.GetDirectoryName(ze.Name));
}
fos = new FileStream(ExtractDir + "\\" + ze.Name, FileMode.Create, FileAccess.Write);
int count;
byte[] buffer = new byte[4096];
while ((count = zis.Read(buffer, 0, 4096)) > 0)
{
fos.Write(buffer, 0, count);
}
}
}
}
finally
{
if (zis != null) zis.Close();
if (fos != null) fos.Close();
}
}
但我有一个异常,表明该文件被另一个进程使用。如何暂停此过程,删除文件然后继续该过程?
答案 0 :(得分:1)
暂停此过程对您没有帮助。您必须在此过程中停止使用该文件,或者如果您无法关闭该过程。您正在使用Web界面,因此您可以向用户显示一条消息,该文件阻止删除文件,并为他提供重试选项。如果文件已解锁(进程释放锁定或进程已关闭),则删除将成功。如果没有,他可以再次重试。
有人认为您应该问自己为什么需要删除仍在使用的文件。这对我来说有点奇怪。
答案 1 :(得分:1)
我不知道是不是你的情况,但有时候我发现像你这样的异常被抛出,因为我在同一个进程中打开文件时没有调用方法Close()。尝试检查您第一次使用该文件的位置
答案 2 :(得分:1)
您可以使用this程序检查哪个进程已锁定您要删除的文件。您需要终止锁定文件的进程才能删除该文件。 一些示例代码可以杀死进程:
Process tool = new Process();
tool.StartInfo.FileName = "handle.exe";
tool.StartInfo.Arguments = fileName+" /accepteula";
tool.StartInfo.UseShellExecute = false;
tool.StartInfo.RedirectStandardOutput = true;
tool.Start();
tool.WaitForExit();
string outputTool = tool.StandardOutput.ReadToEnd();
string matchPattern = @"(?<=\s+pid:\s+)\b(\d+)\b(?=\s+)";
foreach(Match match in Regex.Matches(outputTool, matchPattern))
{
Process.GetProcessById(int.Parse(match.Value)).Kill();
}
将matchPattern替换为您的模式,您应该可以杀死已锁定文件的进程。