Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Checking for file transfer completion
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00353899
Message ID:
00353946
Views:
18
>Is there any way in VFP6.0 that you can check if a file has finished writing to a directory? We have a program that checks a directory to see if a file has been FTPed in.
>
>I am looking for a way to determine that the file has completed it’s transfer and it is now safe to move or use.
>
FUNCTION IsItSoupYet
LPARAMETER cAbsoluteFilePath
LOCAL nFH
nFH = -1
IF FILE(FULLPATH(cAbsoluteFilePath))
   nFH = FOPEN(FULLPATH(cAbsoluteFilePath),12)
   IF nFH # -1
      =FCLOSE(nFH)
   ENDIF
ENDIF
RETURN (nFH # -1)
EMail: EdR@edrauh.com
"See, the sun is going down..."
"No, the horizon is moving up!"
- Firesign Theater


NT and Win2K FAQ .. cWashington WSH/ADSI/WMI site
MS WSH site ........... WSH FAQ Site
Wrox Press .............. Win32 Scripting Journal
eSolutions Services, LLC

The Surgeon General has determined that prolonged exposure to the Windows Script Host may be addictive to laboratory mice and codemonkeys
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform