Index: branches/dev/data/class/SC_UploadFile.php
===================================================================
--- branches/dev/data/class/SC_UploadFile.php	(revision 14518)
+++ branches/dev/data/class/SC_UploadFile.php	(revision 14583)
@@ -356,7 +356,8 @@
      * @param string $dst_path ¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¥Ñ¥¹(ÁêÂÐ¥Ñ¥¹)
      * @param string $src_path ¥³¥Ô¡¼¸µ¥Õ¥¡¥¤¥ë¥Ñ¥¹(ÀäÂÐ¥Ñ¥¹)
+     * @param boolean $del_flag °ÜÆ°¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë¥Õ¥é¥°
      * @return void
      */
-    function ftpMoveFile($dst_path, $src_path) {
+    function ftpMoveFile($dst_path, $src_path, $del_flag = false) {
         global $arrWEB_SERVERS;
 
@@ -366,5 +367,7 @@
         }
         // °ÜÆ°¸å¤Ï¥Õ¥¡¥¤¥ë¤òºï½ü
-        @unlink($src_path);
+        if($del_flag) {
+            @unlink($src_path);
+        }
     }
 
