Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 348)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 349)
@@ -139,4 +139,7 @@
 			Patch-1726781</a>] Updated the upload class for asp to handle large files and other data 
 			in the forms. Thanks to NetRube.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/225">#225</a>] With ColdFusion,
+			the target directory is now being automatically created if needed when "quick uploading".
+			Thanks to sirmeili.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/filemanager/upload/cfm/upload.cfm
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/cfm/upload.cfm	(revision 348)
+++ /FCKeditor/trunk/editor/filemanager/upload/cfm/upload.cfm	(revision 349)
@@ -89,4 +89,8 @@
 		<cfset currentFolderPath = userFilesServerPath & url.type & fs>
 
+		<cfif not directoryExists(currentFolderPath)>
+			<cfdirectory action="create" directory="#currentFolderPath#"/>
+		</cfif>
+
 		<!--- TODO: upload to a temp directory and move file if extension is allowed --->
 
