Jump to content

FileCopy works only with overwrite ? [SOLVED]


Recommended Posts

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 ?

Thanks

Nicolas.

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 by satanico64
Add Solved to title.
Link to comment
Share on other sites

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

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

  • Moderators

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 exist

We 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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 by jguinch
Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...