[SOLVED] Can't break out hash() with ESC when file path is specified

Things you’d like to miss in the future...
Post Reply
Leito
Posts: 561
Joined: 26 Sep 2016 15:37
Location: Windows 10 1809 x64

[SOLVED] Can't break out hash() with ESC when file path is specified

Post by Leito »

The help file mentions that the hash() function can be used with the "2" flag in order to show the progress and allow break out with the ESC key.

It works fine with this code:

Code: Select all

Hash("md5",, 3);
But when I try to add a file path as second argument (to use in a foreach loop), progress isn't shown and I can't break the hash with the ESC key:

Code: Select all

Hash("md5", $filePath, 3);
What gives?
Last edited by Leito on 08 Apr 2018 12:09, edited 1 time in total.

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Can't break out hash() with ESC when file path is specified

Post by highend »

It works with <curitem> so it should work with an arbitrary file.

I'll move this to Bug Reports...
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 60602
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Can't break out hash() with ESC when file path is specified

Post by admin »

Yep. Fix comes.

Leito
Posts: 561
Joined: 26 Sep 2016 15:37
Location: Windows 10 1809 x64

Re: Can't break out hash() with ESC when file path is specified

Post by Leito »

admin wrote:Yep. Fix comes.
Thanks!

Post Reply