
I am creating a zip file using the zipfile module.It works like a charm. but thatsĀ file, saved in the executed script place.
my script path is a:
c:/User/Administrator/script.py
and the zipfile saved in:
c:/User/Administrator/backup.zip
but i want, creating a zipfile, in another path, like this:
d:/backups/backup.zip
my code like this:
tnx a lot.
my script path is a:
c:/User/Administrator/script.py
and the zipfile saved in:
c:/User/Administrator/backup.zip
but i want, creating a zipfile, in another path, like this:
d:/backups/backup.zip
my code like this:
import zipfile zip_file = zipfile.ZipFile("backup.zip", 'w') with zip_file: for file in filePaths: zip_file.write(file)my question is a how can i adding custom path for saving the zip_file. because i have not an enough space in C:
tnx a lot.