Hi,
i want to rename my file. But i got a IOException. It says "The Process Cannot Access the File Because It Is Being Used by Another Process".
This is my Code:
Without trying to rename my file, it works fine.
Thanks for reading.
Daniel
i want to rename my file. But i got a IOException. It says "The Process Cannot Access the File Because It Is Being Used by Another Process".
This is my Code:
<telerik:RadAsyncUpload ID="rauKachelUpload" runat="server" ChunkSize="0" Localization-Cancel="Löschen" Localization-Remove="Entfernen" Localization-Select="Auswählen" Culture="de-DE" Skin="MetroTouch" MaxFileInputsCount="1" OnFileUploaded="rauKachelUpload_FileUploaded"></telerik:RadAsyncUpload>Protected Sub rauKachelUpload_FileUploaded(sender As Object, e As FileUploadedEventArgs) Try Using fileStream As Stream = e.File.InputStream Using img As System.Drawing.Image = System.Drawing.Image.FromStream(fileStream) Dim h As Integer = img.Height Dim w As Integer = img.Width img.Dispose() Dim fileName As String = e.File.GetName() If w = MaxWidth And h = MaxHeight Then rauKachelUpload.TargetFolder = "img/kachel_grafik" Dim TimeStamp As String = DateDiff("s", "01/1/1970 12:00:00 AM", DateTime.Now) fileName = "KI_" & TimeStamp & WelcheSparteUndGröße KachelPfad = "~/img/kachel_grafik/" & fileName Else KachelFalsch = True End If If KachelFalsch = False Then e.File.SaveAs(fileName) Page.ClientScript.RegisterClientScriptBlock([GetType](), "CloseScript", "redirectParentPage('VermittlerBearbeiten.aspx?ID=" & VermittlerID & "&KBFN=" & KachelPfad & "&NA=true" & "&fwg=" & WelcheSparteUndGröße & "&Ang1=" & hfAng1CHK.Value & "&Ang2=" & hfAng2CHK.Value & "&Ang3=" & hfAng3CHK.Value & "&Ang4=" & hfAng4CHK.Value & "&AngSrc1=" & hfKachelIMGSrcBaufi.Value & "&AngSrc2=" & hfKachelIMGSrcImmo.Value & "&AngSrc3=" & hfKachelIMGSrcPhoto.Value & "&AngSrc4=" & hfKachelIMGSrcAsse.Value & "');", True) Else rnfIconNichtErzeugt.Visible = True End If End Using End Using Catch ex As Exception rnfIconNichtErzeugt.Visible = True End TryEnd SubWithout trying to rename my file, it works fine.
Thanks for reading.
Daniel
