how to upload the file in the virtual disk?
I have created a virtual drive called Z.But I don't upload file(image).
I could not find how to write the file path.
<cfif len(attributes.background_file)>
<cfset upload_folder =( ".....")">
<cffile action = "upload"
fileField = "background_file"
destination = "#upload_folder#"
nameConflict = "MakeUnique"
mode="777">
<cfset file_name = "#createUUID()#.#cffile.serverfileext#">
<cffile action="rename" source="#upload_folder##cffile.serverfile#" destination="#upload_folder##file_name#">
<cfif isdefined("attributes.old_background")>
<cf_del_server_file output_file="settings/#attributes.old_background#" output_server="#attributes.old_background_server_id#">
</cfif>
</cfif>
