I have standard html form for upload files
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<input type="file" name="file">
...
What is maximum length of filename, which can be uploaded by user ?
P.S.
I'm saving file on server with modified name, but also need to keep original name, because I use original name at downloading that file.