Need to add a feature that saves Only PNG files saves in a sepearate file #1149
Replies: 2 comments 1 reply
-
@aravindb26 Thank you for raising this issue. The screenshot functionality uses an index to handle multiple input URLs that might refer to the same domain. If you have any further questions or need more clarification, please feel free to ask. We're here to help! |
Beta Was this translation helpful? Give feedback.
-
This feature might be useful for this issue. :) |
Beta Was this translation helpful? Give feedback.
-
Please describe your feature request:
A feature to save only PNG files in a separate folder after capturing screenshots.
Describe the use case of this feature:
Currently, the screenshots are saved individually for each domain, which requires manual effort to visit each website. By implementing this feature, all PNG files can be saved in a designated folder, saving time and effort.
Proposed Solution:
To address this feature request, the following solution can be implemented:
mkdir png_folder
find
command to locate PNG files in the "screenshot" directory:find screenshot -type f -name "*.png" -exec cp {} png_folder/ \;
By implementing this solution, all PNG files will be copied to the "png_folder," consolidating them in one location.
Please let me know if you need any further information or clarification.
Beta Was this translation helpful? Give feedback.
All reactions