satanico64 Posted September 3, 2015 Share Posted September 3, 2015 (edited) Hi from Bordeaux, France ! how are you today ? I had a problem with filecopy function.I have a folder with my gifs on a network folder. At the start of my program, i want to make a copy on local pc. Not much complicated.If i do :FileCopy(SOURCE ,DESTINATION, $FC_CREATEPATH)It does'nt work. My destination folder is not empty and contains file which are even present in the source. I would like that filecopy add new file from the source to the destination, without overwrite. But it does'nt work.If i do:FileCopy(SOURCE ,DESTINATION, $FC_OVERWRITE+ $FC_CREATEPATH)This overwrite with all files.So i do that, because it works...but if i only want to copy new file how can i do ?ThanksNicolas.CopierDossierImage() Func CopierDossierImage() $DossierImagesReseau = "\\sw3308\IntranetSTC\Hors Web\Logiciels STC\Barre STC\images\" $DossierImagesLocal = $DossierBarreSTC & "\Images\" FileCopy($DossierImagesReseau & "*.*", $DossierImagesLocal, $FC_OVERWRITE+ $FC_CREATEPATH) EndFunc ;==>CopierDossierImage Edited September 9, 2015 by satanico64 Add Solved to title. Link to comment Share on other sites More sharing options...
DarkwarlorD Posted September 3, 2015 Share Posted September 3, 2015 Morning, @satanico64 ... I don't know if you have subfolders or the type of image you have, but you can try something like this:$remote = "C:\Remote" ; Your Remote Folder $local = "C:\Temp" ; Your Local Folder $ext = "*.gif" $array = _FileListToArray($remote, $ext, $FLTA_FILES) $count = 0 For $i = 1 To $array[0] $result = FileCopy($remote & "\" & $array[$i], $local) If $result = 1 Then $count +=1 Next MsgBox(0, "Files Copy", "Total Copied: " & $count &" Files")Works for me, your just need to adjust if you have subfolders or multiple extensions (see _FileListToArrayRec) Link to comment Share on other sites More sharing options...
mikell Posted September 3, 2015 Share Posted September 3, 2015 Not sure that such a 'no-overwrite' selection could be done using wildcardsLocal $hSearch = FileFindFirstFile("source\*.*") While 1 $sFileName = FileFindNextFile($hSearch) If @error Then ExitLoop If not FileExists("dest\" & $sFileName) Then FileCopy("source\" & $sFileName, "dest\") WEnd FileClose($hSearch) Link to comment Share on other sites More sharing options...
satanico64 Posted September 3, 2015 Author Share Posted September 3, 2015 thanks both for your answers.I'll try that. (i don't want to copy all file whereas the folder has'nt been changed).Meanwhile, it does'nt seems to be normal that the filecopy command does'nt copy file that does'nt exist in destination folder because there are file that exist and we don't want to overwrite them.I have subfolder in both folder but it does'nt interest me. I know that files in subfolder are'nt treated. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted September 3, 2015 Moderators Share Posted September 3, 2015 satanico64,it does'nt seems to be normal that the filecopy command does'nt copy file that does'nt exist in destination folder because there are file that existWe have discussed this before and I seem to remember that this is standard Windows behaviour and nothing to do with AutoIt. If you copy files with a wildcard it will fail if there already are files with the same name and you do not specify that they should be overwritten. As AutoIt just uses the Windows API to do the job, it suffers from the same limitation.I feel you will have to do as mikell has suggested and check each file before copying rather then using a wildcard.M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
jguinch Posted September 3, 2015 Share Posted September 3, 2015 (edited) Salut ami bordelais You can also try this :#include <WinAPIShellEx.au3> _WinAPI_ShellFileOperation ( $DossierImagesReseau & "\*.*", $DossierImagesLocal, $FO_COPY, $FOF_SILENT)Edit : the FileExists check is not needed because the default flag of FileCopy processes the check for you Edited September 3, 2015 by jguinch Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF Link to comment Share on other sites More sharing options...
satanico64 Posted September 9, 2015 Author Share Posted September 9, 2015 this is standard Windows behaviour and nothing to do with AutoIt.so it's true that, Windaws act like this, you're totally true ! ( But i use supercopier to replace Windows copy, since more than 10 years xD )@jguinch with your command it does the same thing. So i did a copy for each file with nowrite option. Merci en tous cas pour cette autre approche ! We can close this post. Good job team ! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now