Sponsored Content
Top Forums UNIX for Advanced & Expert Users Issue with IN_CLOSE_WRITE Event Of incrond Post 302886101 by Ariean on Wednesday 29th of January 2014 05:04:18 PM
Old 01-29-2014
Quote:
Originally Posted by Corona688
It is the uploader's job to move the file.

Only the uploader will know when it is complete.

If you cannot get the uploader to somehow signal completion, workarounds will be very ugly and potentially unreliable -- if you check timestamps, how can you tell the difference between a broken, stalled, or finished upload? You can't...
I just found that problem is with WINSCP client tool which user is using to drop the file and it creates a temporary file and renames it once it is done, incrontab thinks that it is temporary file open/close and sends that filename.part as input to the script. I came up with a script to strip and rename the file for further processing, thank you.
This User Gave Thanks to Ariean For This Post:
 
Dancer::Request::Upload(3pm)				User Contributed Perl Documentation			      Dancer::Request::Upload(3pm)

NAME
Dancer::Request::Upload - class representing file uploads requests DESCRIPTION
This class implements a representation of file uploads for Dancer. These objects are accesible within route handlers via the request->uploads keyword. See Dancer::Request for details. METHODS
filename Returns the filename as sent by the client. basename Returns basename for "filename". tempname Returns the name of the temporary file the data has been saved to. This will be in e.g. /tmp, and given a random name, with no file extension. link_to Creates a hard link to the temporary file. Returns true for success, false for failure. $upload->link_to('/path/to/target'); file_handle Returns a read-only file handle on the temporary file. content Returns a scalar containing the contents of the temporary file. copy_to Copies the temporary file using File::Copy. Returns true for success, false for failure. $upload->copy_to('/path/to/target') size The size of the upload, in bytes. headers Returns a hash ref of the headers associated with this upload. type The Content-Type of this upload. AUTHORS
This module as been writen by Alexis Sukrieh, heavily based on Plack::Request::Upload. Kudos to Plack authors. SEE ALSO
Dancer perl v5.14.2 2011-11-30 Dancer::Request::Upload(3pm)
All times are GMT -4. The time now is 09:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy