First of all i would like to thank you so much for the work you put in!
I am a complete noob so it might not be a error with the code at all.
The error i am getting when i try to download with jupyter is this one.
PermissionError Traceback (most recent call last)
in
30 ignore = {'.ipynb_checkpoints', 'pycache', target_file_name}
31
---> 32 make_tar_file(dir_name, target_file_name, ignore)
in make_tar_file(dir_name, target_file_name, ignore)
20
21 for file_name in recursive_files(dir_name, ignore):
---> 22 tar.add(file_name)
23
24 tar.close()
c:\python38\lib\tarfile.py in add(self, name, arcname, recursive, filter)
1964 # Append the tar header and data to the archive.
1965 if tarinfo.isreg():
-> 1966 with bltn_open(name, "rb") as f:
1967 self.addfile(tarinfo, f)
1968
PermissionError: [Errno 13] Permission denied: '.\NTUSER.DAT'
First of all i would like to thank you so much for the work you put in!
I am a complete noob so it might not be a error with the code at all.
The error i am getting when i try to download with jupyter is this one.
PermissionError Traceback (most recent call last)
in
30 ignore = {'.ipynb_checkpoints', 'pycache', target_file_name}
31
---> 32 make_tar_file(dir_name, target_file_name, ignore)
in make_tar_file(dir_name, target_file_name, ignore)
20
21 for file_name in recursive_files(dir_name, ignore):
---> 22 tar.add(file_name)
23
24 tar.close()
c:\python38\lib\tarfile.py in add(self, name, arcname, recursive, filter)
1964 # Append the tar header and data to the archive.
1965 if tarinfo.isreg():
-> 1966 with bltn_open(name, "rb") as f:
1967 self.addfile(tarinfo, f)
1968
PermissionError: [Errno 13] Permission denied: '.\NTUSER.DAT'