selnmich Posted October 16, 2006 Posted October 16, 2006 Hi, I want to use API Filcopy... Here a vb sample script from micro$oft Declare Function apiCopyFile Lib "kernel32" Alias "CopyFileA" _ (ByVal lpExistingFileName As String, _ ByVal lpNewFileName As String, _ ByVal bFailIfExists As Long) As Long Sub CopyFile(SourceFile As String, DestFile As String) '--------------------------------------------------------------- ' PURPOSE: Copy a file on disk from one location to another. ' ACCEPTS: The name of the source file and destination file. ' RETURNS: Nothing '--------------------------------------------------------------- Dim Result As Long If Dir(SourceFile) = "" Then MsgBox Chr(34) & SourceFile & Chr(34) & _ " is not valid file name." Else Result = apiCopyFile(SourceFile, DestFile, False) End If End Sub please help me.... thanks
Moderators SmOke_N Posted October 16, 2006 Moderators Posted October 16, 2006 Anything wrong with FileCopy AutoIt uses in the help file? Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
selnmich Posted October 18, 2006 Author Posted October 18, 2006 Anything wrong with FileCopy AutoIt uses in the help file?Hi,NoNo its all right with Filcopy in Autoit... But when i copy one bigfile(1000 MB) i would like see a progressbar and the Windows API do this (so i hope).Can you help me??Sorry for my bad english cya Selnmich
The Kandie Man Posted October 18, 2006 Posted October 18, 2006 http://www.autoitscript.com/forum/index.ph...st&p=186168^this is the besthttp://www.autoitscript.com/forum/index.ph...c=32263&hl=http://www.autoitscript.com/forum/index.ph...pyFile+DialogueThose also work. "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire
this-is-me Posted October 18, 2006 Posted October 18, 2006 I know this is a little late, but there is a solution on the Support Forum FAQ Q6 Who else would I be?
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