问题:我有一个ASP.NET应用程序,可以创建临时PDF文件(供用户下载)。 现在,许多用户可以创建许多PDF,这需要占用大量磁盘空间。
计划删除超过1天/ 8小时的文件的最佳方法是什么? 最好是在asp.net应用程序本身...
答案 0 :(得分:5)
对于您需要创建的每个临时文件,请在会话中记下文件名:
// create temporary file:
string fileName = System.IO.Path.GetTempFileName();
Session[string.Concat("temporaryFile", Guid.NewGuid().ToString("d"))] = fileName;
// TODO: write to file
接下来,将以下清理代码添加到global.asax:
<%@ Application Language="C#" %>
<script RunAt="server">
void Session_End(object sender, EventArgs e) {
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised.
// remove files that has been uploaded, but not actively 'saved' or 'canceled' by the user
foreach (string key in Session.Keys) {
if (key.StartsWith("temporaryFile", StringComparison.OrdinalIgnoreCase)) {
try {
string fileName = (string)Session[key];
Session[key] = string.Empty;
if ((fileName.Length > 0) && (System.IO.File.Exists(fileName))) {
System.IO.File.Delete(fileName);
}
} catch (Exception) { }
}
}
}
</script>
更新:我现在正在使用一种新的(改进的)方法,而不是上述方法。新的涉及HttpRuntime.Cache并检查文件是否超过8小时。如果有兴趣的话,我会在这里发布。这是我的新 global.asax.cs :
using System;
using System.Web;
using System.Text;
using System.IO;
using System.Xml;
using System.Web.Caching;
public partial class global : System.Web.HttpApplication {
protected void Application_Start() {
RemoveTemporaryFiles();
RemoveTemporaryFilesSchedule();
}
public void RemoveTemporaryFiles() {
string pathTemp = "d:\\uploads\\";
if ((pathTemp.Length > 0) && (Directory.Exists(pathTemp))) {
foreach (string file in Directory.GetFiles(pathTemp)) {
try {
FileInfo fi = new FileInfo(file);
if (fi.CreationTime < DateTime.Now.AddHours(-8)) {
File.Delete(file);
}
} catch (Exception) { }
}
}
}
public void RemoveTemporaryFilesSchedule() {
HttpRuntime.Cache.Insert("RemoveTemporaryFiles", string.Empty, null, DateTime.Now.AddHours(1), Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, delegate(string id, object o, CacheItemRemovedReason cirr) {
if (id.Equals("RemoveTemporaryFiles", StringComparison.OrdinalIgnoreCase)) {
RemoveTemporaryFiles();
RemoveTemporaryFilesSchedule();
}
});
}
}
答案 1 :(得分:1)
尝试使用Path.GetTempPath()
。它将为您提供一个Windows临时文件夹的路径。然后它将由Windows清理:)
您可以在此处详细了解该方法http://msdn.microsoft.com/en-us/library/system.io.path.gettemppath.aspx
答案 2 :(得分:1)
最好的方法是创建一个批处理文件,由Windows任务调度程序以你想要的间隔调用它。
OR
您可以使用上面的类
创建一个Windows服务public class CleanUpBot
{
public bool KeepAlive;
private Thread _cleanUpThread;
public void Run()
{
_cleanUpThread = new Thread(StartCleanUp);
}
private void StartCleanUp()
{
do
{
// HERE THE LOGIC FOR DELETE FILES
_cleanUpThread.Join(TIME_IN_MILLISECOND);
}while(KeepAlive)
}
}
请注意,您也可以在pageLoad中调用此类,它不会影响处理时间,因为处理是在另一个线程中。只需删除do-while和Thread.Join()。
答案 3 :(得分:0)
如何存储文件?如果可能,您可以使用一个简单的解决方案,其中所有文件都存储在以当前日期和时间命名的文件夹中 然后创建一个删除旧文件夹的简单页面或httphandler。您可以使用Windows计划或其他cron作业定期调用此页面。
答案 4 :(得分:0)
在Appication_Start上创建一个计时器,并安排计时器每隔1小时调用一次方法,并刷新超过8小时或1天的文件或您需要的任何持续时间。
答案 5 :(得分:0)
我有点同意德克在答案中说的那些。
这个想法是你放下文件的临时文件夹是一个固定的已知位置,但我略有不同......
每次创建文件时都会将文件名添加到会话对象的列表中(假设没有数千个,如果有这个列表命中给定的上限,则执行下一位)
< / LI>当会话结束时,应该在global.asax中引发Session_End事件。迭代列表中的所有文件并将其删除。
答案 6 :(得分:0)
private const string TEMPDIRPATH = @"C:\\mytempdir\";
private const int DELETEAFTERHOURS = 8;
private void cleanTempDir()
{
foreach (string filePath in Directory.GetFiles(TEMPDIRPATH))
{
FileInfo fi = new FileInfo(filePath);
if (!(fi.LastWriteTime.CompareTo(DateTime.Now.AddHours(DELETEAFTERHOURS * -1)) <= 0)) //created or modified more than x hours ago? if not, continue to the next file
{
continue;
}
try
{
File.Delete(filePath);
}
catch (Exception)
{
//something happened and the file probably isn't deleted. the next time give it another shot
}
}
}
上面的代码将删除临时目录中超过8小时前创建或修改的文件。
但是我建议使用另一种方法。正如Fredrik Johansson建议的那样,您可以在会话结束时删除用户创建的文件。更好的方法是根据临时目录中用户的会话ID使用额外的目录。当会话结束时,您只需删除为用户创建的目录。
private const string TEMPDIRPATH = @"C:\\mytempdir\";
string tempDirUserPath = Path.Combine(TEMPDIRPATH, HttpContext.Current.User.Identity.Name);
private void removeTempDirUser(string path)
{
try
{
Directory.Delete(path);
}
catch (Exception)
{
//an exception occured while deleting the directory.
}
}
答案 7 :(得分:0)
使用缓存到期通知触发文件删除:
private static void DeleteLater(string path)
{
HttpContext.Current.Cache.Add(path, path, null, Cache.NoAbsoluteExpiration, new TimeSpan(0, 8, 0, 0), CacheItemPriority.NotRemovable, UploadedFileCacheCallback);
}
private static void UploadedFileCacheCallback(string key, object value, CacheItemRemovedReason reason)
{
var path = (string) value;
Debug.WriteLine(string.Format("Deleting upladed file '{0}'", path));
File.Delete(path);
}
参考:MSDN | How to: Notify an Application When an Item Is Removed from the Cache