dcicutils 8.8.4.1b31__py3-none-any.whl → 8.8.4.1b32__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- dcicutils/tmpfile_utils.py +8 -6
- {dcicutils-8.8.4.1b31.dist-info → dcicutils-8.8.4.1b32.dist-info}/METADATA +1 -1
- {dcicutils-8.8.4.1b31.dist-info → dcicutils-8.8.4.1b32.dist-info}/RECORD +6 -6
- {dcicutils-8.8.4.1b31.dist-info → dcicutils-8.8.4.1b32.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.8.4.1b31.dist-info → dcicutils-8.8.4.1b32.dist-info}/WHEEL +0 -0
- {dcicutils-8.8.4.1b31.dist-info → dcicutils-8.8.4.1b32.dist-info}/entry_points.txt +0 -0
dcicutils/tmpfile_utils.py
CHANGED
@@ -50,12 +50,6 @@ def remove_temporary_directory(tmp_directory_name: str) -> None:
|
|
50
50
|
"""
|
51
51
|
Removes the given directory, recursively; but ONLY if it is (somewhere) within the system temporary directory.
|
52
52
|
"""
|
53
|
-
def is_temporary_directory(path: str) -> bool:
|
54
|
-
try:
|
55
|
-
tmpdir = tempfile.gettempdir()
|
56
|
-
return os.path.commonpath([path, tmpdir]) == tmpdir and os.path.exists(path) and os.path.isdir(path)
|
57
|
-
except Exception:
|
58
|
-
return False
|
59
53
|
if is_temporary_directory(tmp_directory_name): # Guard against errant deletion.
|
60
54
|
shutil.rmtree(tmp_directory_name)
|
61
55
|
|
@@ -72,3 +66,11 @@ def remove_temporary_file(tmp_file_name: str) -> bool:
|
|
72
66
|
return False
|
73
67
|
except Exception:
|
74
68
|
return False
|
69
|
+
|
70
|
+
|
71
|
+
def is_temporary_directory(path: str) -> bool:
|
72
|
+
try:
|
73
|
+
tmpdir = tempfile.gettempdir()
|
74
|
+
return os.path.commonpath([path, tmpdir]) == tmpdir and os.path.exists(path) and os.path.isdir(path)
|
75
|
+
except Exception:
|
76
|
+
return False
|
@@ -68,13 +68,13 @@ dcicutils/structured_data.py,sha256=BQuIMv6OPySsn6YxtXE2Er-zLE2QJuCYhEQ3V0u_UXY,
|
|
68
68
|
dcicutils/submitr/progress_constants.py,sha256=5bxyX77ql8qEJearfHEvsvXl7D0GuUODW0T65mbRmnE,2895
|
69
69
|
dcicutils/submitr/ref_lookup_strategy.py,sha256=Js2cVznTmgjciLWBPLCvMiwLIHXjDn3jww-gJPjYuFw,3467
|
70
70
|
dcicutils/task_utils.py,sha256=MF8ujmTD6-O2AC2gRGPHyGdUrVKgtr8epT5XU8WtNjk,8082
|
71
|
-
dcicutils/tmpfile_utils.py,sha256=
|
71
|
+
dcicutils/tmpfile_utils.py,sha256=irmN6Otvtxyum-7qr5h9GIzDs9rtFFyUsGQyqJXd_y4,2997
|
72
72
|
dcicutils/trace_utils.py,sha256=g8kwV4ebEy5kXW6oOrEAUsurBcCROvwtZqz9fczsGRE,1769
|
73
73
|
dcicutils/validation_utils.py,sha256=cMZIU2cY98FYtzK52z5WUYck7urH6JcqOuz9jkXpqzg,14797
|
74
74
|
dcicutils/variant_utils.py,sha256=2H9azNx3xAj-MySg-uZ2SFqbWs4kZvf61JnK6b-h4Qw,4343
|
75
75
|
dcicutils/zip_utils.py,sha256=_Y9EmL3D2dUZhxucxHvrtmmlbZmK4FpSsHEb7rGSJLU,3265
|
76
|
-
dcicutils-8.8.4.
|
77
|
-
dcicutils-8.8.4.
|
78
|
-
dcicutils-8.8.4.
|
79
|
-
dcicutils-8.8.4.
|
80
|
-
dcicutils-8.8.4.
|
76
|
+
dcicutils-8.8.4.1b32.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
77
|
+
dcicutils-8.8.4.1b32.dist-info/METADATA,sha256=zSLVym7yglbD0yYfT9BPLwLbGtGsEjtdZ9jrPEX1I34,3440
|
78
|
+
dcicutils-8.8.4.1b32.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
79
|
+
dcicutils-8.8.4.1b32.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
|
80
|
+
dcicutils-8.8.4.1b32.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|