# Instantiate the pluginfiles=BotFilesPlugin()# List of all files that will be zippedfiles_path=['documents/example_1.txt','images/test.png']# Creates a zip file called "my_zip" containing the given filesfiles.zip_files(files_path,"my_zip.zip")
We can also create a zip file containing all the contents of the given directory, including files and subfolders.
# Instantiate the pluginfiles=BotFilesPlugin()# Creates a zip file called "result" containing all the "documents" directory contentfiles.zip_directory("files/documents","result.zip")
It is possible to unzip only a specific file or the entire contents of a zip file.
# Instantiate the pluginfiles=BotFilesPlugin()# Unzipping all contents of "my_zip" and saving to "zip_content" folderfiles.unzip_all(zip_file="my_zip.zip",destination_folder="files/zip_content")# Unzipping only a single file contained in "my_zip"files.unzip_file(zip_file="my_zip.zip",file_to_extract="image.png")
In some cases it is necessary to wait for files to be saved and available in certain folders,
such as processes where files are downloaded from a website.
In these cases we may not know the exaclty name and path of the file that will be downloaded,
making the process of waiting for the file more complicated. Also, when working with large
files we may not know exactly how long it takes to wait for the file, affecting the rest of the process.
With that in mind, the wait_for_file method offers a way to wait for a new file without any difficulties.
It is possible to monitor a destination folder through a context manager until a new file is completely created or modified.
frombotcity.plugins.filesimportBotFilesPluginfrombotcity.webimportWebBot...# Instantiating o webbotbot=WebBot()# Setting the default browserbot.browser=Browser.FIREFOX# Setting the WebDriverbot.driver_path=r"geckodriver.exe"# Instantiating the pluginfiles=BotFilesPlugin()# Accessing a web page through the WebBotbot.browse("https://filesamples.com/formats/bin")# Waiting for a new ".bin" file to be saved in the "downloads" folderwithfiles.wait_for_file(directory_path="Documents/downloads",file_extension=".bin",timeout=300000):print("\nDownloading file...")# Clicking to start downloadifbot.find(label="download_file",matching=0.97,waiting_time=10000):bot.click()# Continuing the process after waiting for the fileprint("\nDownload completed, continuing the process...")# Getting the full path of the newest ".bin" file in the "downloads" folderfile_path=files.get_last_created_file(directory_path="Documents/downloads",file_extension=".bin")...