File Copy
-
Hi All, I want to copy a file from one location to another using eVB. I'm using pocket pc 2002. How can i do this ? Mahesh
-
Hi All, I want to copy a file from one location to another using eVB. I'm using pocket pc 2002. How can i do this ? Mahesh
Use the
CopyFile
API. You may have to import it from one of the system DLLs. Regards, João Paulo -
Use the
CopyFile
API. You may have to import it from one of the system DLLs. Regards, João PauloHi Which dll contains the CopyFile function. Can you please give me a sample code. Mahesh
-
Hi Which dll contains the CopyFile function. Can you please give me a sample code. Mahesh
You will have to declare it with something like this (I'm no eVB expert and I haven't tested this):
Public Declare Function CopyFile Lib "Coredll" Alias "CopyFileW" (ByVal ExistingFileName As String, ByVal NewFileName As String, ByVal FailIfExists As Bool)
See the help file on the
Declare
statement. Regards, João Paulo