-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
Type: EnhancementMost issues will probably ask for additions or changes.Most issues will probably ask for additions or changes.
Description
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:
- Create a new folder to save PNG files:
mkdir png_folder - Use the
findcommand 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.
Metadata
Metadata
Assignees
Labels
Type: EnhancementMost issues will probably ask for additions or changes.Most issues will probably ask for additions or changes.