How to make WWW::Mechanize upload file under different file name?
I would like web server to see/record file name different from file name on my computer.
How to make WWW::Mechanize upload file under different file name?
I would like web server to see/record file name different from file name on my computer.
You can use a hard link:
link "file_name_on_your_computer","desired_new_name";
# Code to upload the newly created link
unlink "desired_new_name";
Notes
Taken from: https://gist.github.com/gaurav/253111#file-file-upload-pl