Bonjour,
Voila je cherche à recuperer des fichiers sur un pocket pc à l'aide d'une appli foxpro.
J'ai integré le code suivant dans mon appli :
|
DECLARE INTEGER CeRapiInit IN rapi |
DECLARE INTEGER CeCopyFile IN rapi; STRING lpExistingFileName,; STRING lpNewFileName,; INTEGER bFailIfExists
|
 |
CeRapiInit()
CeCopyFile("c:\temp\test.txt", "\temp\test.txt", 1)
Mais cela ne marche pas. Sur internet j'ai trouvé
| Parameters: |
 |
lpExistingFileName [in] Long pointer to a null-terminated string that specifies the name of an existing file.
lpNewFileName [in] Long pointer to a null-terminated string that specifies the name of the new file.
bFailIfExists [in] Boolean value that specifies how this operation is to proceed if a file of the same name as that indicated by lpNewFileName already exists. |
Mais tous cela ne m'aide pas beaucoup. Quelqu'un a t'il deja fait cela ?
Merci
duck88