به نقل از H_R :حجم فایل های آپلود شده رو هون موقع آپلود میتونی ببینی از طرفی اگه فایل هات عکس اه بهتره که بهینه شون کنی قبل از اینکه ذخیرشون کنی (توiranasp.net ) یه مقاله در این باهره با نام دستکاری تصاویر گذاشتم که این رو کار رو توضیح میده .
برای اندزه فایل اگه اشتباه نکنم این جواب میده
FileUpload.PostedFile.ContentLength
که FileUpload هم System.Web.UI.HtmlControls.HtmlInputFile هست
File.Delete(Server.MapPath("filename.jpg"));
Imports System
Imports System.IO
Imports System.Text
Public Class Test
Public Shared Sub Main()
Dim path As String = "c:\temp\MyTest.txt"
Try
Dim sw As StreamWriter = File.CreateText(path)
sw.Close()
Dim path2 As String = path + "temp"
' Ensure that the target does not exist.
File.Delete(path2)
' Copy the file.
File.Copy(path, path2)
Console.WriteLine("{0} was copied to {1}.", path, path2)
' Delete the newly created file.
File.Delete(path2)
Console.WriteLine("{0} was successfully deleted.", path2)
Catch e As Exception
Console.WriteLine("The process failed: {0}", e.ToString())
End Try
End Sub
End Class
به نقل از H_R :ای بابا از اول بگو !
اینطوری پاک میشن :
توجه کن که کلاس فایل خمونطور که انتظار میره توی فضای نام System.IO اهکد:File.Delete(Server.MapPath("filename.jpg"));
برای اطلاعات بیشتر این یه مثال vb
کد:Imports System Imports System.IO Imports System.Text Public Class Test Public Shared Sub Main() Dim path As String = "c:\temp\MyTest.txt" Try Dim sw As StreamWriter = File.CreateText(path) sw.Close() Dim path2 As String = path + "temp" ' Ensure that the target does not exist. File.Delete(path2) ' Copy the file. File.Copy(path, path2) Console.WriteLine("{0} was copied to {1}.", path, path2) ' Delete the newly created file. File.Delete(path2) Console.WriteLine("{0} was successfully deleted.", path2) Catch e As Exception Console.WriteLine("The process failed: {0}", e.ToString()) End Try End Sub End Class
اگه سرور ارور داد حتما دسترسی شما به فایل مجاز نیست که روی هاد هایی پیش میاد که ntfs فرمت شده باشن .
یه عالمه اطلاعات هم اینجا هست که احتمالا به دردت میخوره :
http://aspalliance.com/920