I have a file upload after a form submission and I need to delete the old file that was there after my file upload is complete. Everything works properly, form submission, file upload. But Coldfusion in general doesn't seem to be able to recognize the old file. Either with a fileExist() command or in the acctually command. Mean while I am output the variable I am using for both fileExist() and the delete right before I hit those lines and I navigate to that exact path in my ftp and the file is in fact there, before and after form submission. The files upload should not be overwriting the previous photo as they are named completely differently and makeunique is being used. I would be greatful for any help. I am not familiar much with coldfusion.
Here is the snippet of code I have for after form submission (im only trying to get image1 working at the moment, but the other 3 images are display the same behavior
This line executes <cfoutput>#variables.erase1#</cfoutput><br /> but hello2 doesn't:
<cfquery name="getPreviousImage" datasource="#Application.datasourceName#">
SELECT
image1, image2, image3, image4
FROM
testaCustomers
WHERE
RecordID = <cfqueryparam value="#form.ID#" cfsqltype="CF_SQL_INTEGER" maxlength="50">
</cfquery>
<cfset variables.oldImage1 = getPreviousImage.image1>
<cfset variables.oldImage2 = getPreviousImage.image2>
<cfset variables.oldImage3 = getPreviousImage.image3>
<cfset variables.oldImage4 = getPreviousImage.image4>
<cfset variables.image1 = getPreviousImage.image1>
<cfset variables.image2 = getPreviousImage.image2>
<cfset variables.image3 = getPreviousImage.image3>
<cfset variables.image4 = getPreviousImage.image4>
<cfif #form.image1# NEQ "">
<cffile action="upload" destination="#Application.filePath#Pics/" filefield="image1" nameconflict="makeunique" result="upload1">
<cfif isDefined ("upload1.serverFile")>
<cfset variables.image1 = #upload1.serverFile#>
</cfif>
<cfset variables.erase1 = Application.filePath & "Pics/" & variables.oldImage1>
<cfoutput>#variables.erase1#</cfoutput><br />
<cfif fileExists(variables.erase1)>
hello2
<cffile action="delete" file="#variables.erase1#">
</cfif>
</cfif>
Edit: Answer: My inserts were adding extra spaces to the end. I just wrapped trim() around the variable to remove them.
<cfset variables.erase1 = Application.filePath & "Pics/" & variables.oldImage1>
<cfset variables.erase1 = Trim(variables.erase1)>
/<cfoutput>#variables.erase1#</cfoutput>/<br />
I added the forward slashes to check.