abazoskib Posted October 9, 2009 Share Posted October 9, 2009 i am writing a file splitter, however i have come across an issue. My splitter is set to run automatically every 10 minutes. It scans a particular directory for any files then splits them into 30mb portions. I just thought of a case where a file might still be being uploaded to the directory. How can I program it so that it does not select the files being uploaded? Quote Link to comment https://forums.phpfreaks.com/topic/177108-detect-upload-in-progress/ Share on other sites More sharing options...
MatthewJ Posted October 9, 2009 Share Posted October 9, 2009 There might be a better way, but could you check file size, sleep the script for a small amount of time and then check file size again... if they are identical, it should be done uploading? Quote Link to comment https://forums.phpfreaks.com/topic/177108-detect-upload-in-progress/#findComment-933825 Share on other sites More sharing options...
mikesta707 Posted October 9, 2009 Share Posted October 9, 2009 as long as you don't scan the temp directory, you will be fine. All uploaded files go to the temp directory, and have to be moved after upload (by PHP or some other scripting language) to a normal directory or they will be deleted. so if they are not in the temp directory, they have been fully uploaded Quote Link to comment https://forums.phpfreaks.com/topic/177108-detect-upload-in-progress/#findComment-933827 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.