|
4 | 4 | import posixpath
|
5 | 5 | import re
|
6 | 6 | import sys
|
7 |
| -from collections.abc import Generator |
8 | 7 | from copy import deepcopy
|
9 |
| -from pathlib import Path |
10 |
| -from typing import Any |
11 | 8 | from urllib.parse import unquote, urlsplit
|
12 | 9 |
|
13 | 10 | from pathvalidate import sanitize_filename, sanitize_filepath
|
@@ -210,18 +207,7 @@ def get_format_template(
|
210 | 207 | def path_file_sanitize(path_file: pathlib.Path, adapt: bool = False, uniquify: bool = True) -> pathlib.Path:
|
211 | 208 | sanitized_path_file: pathlib.Path = pathlib.Path(path_file.root)
|
212 | 209 | # Get each directory name separately (first value in tuple; second value is for the file suffix).
|
213 |
| - to_sanitize: [(str, str)] = [] |
214 |
| - receding_is_first: bool = True |
215 |
| - |
216 |
| - for i in receding_path(path_file): |
217 |
| - if receding_is_first: |
218 |
| - receding_is_first = False |
219 |
| - |
220 |
| - to_sanitize.append((i.stem, i.suffix)) |
221 |
| - else: |
222 |
| - to_sanitize.append((i.name, "")) |
223 |
| - |
224 |
| - to_sanitize.reverse() |
| 210 | + to_sanitize: [[str, str]] = path_split_parts_suffix(path_file) |
225 | 211 |
|
226 | 212 | for name, suffix in to_sanitize:
|
227 | 213 | # Sanitize names: We need first top make sure that none file / directory name has bad chars or is longer than 255 chars.
|
@@ -256,7 +242,7 @@ def path_file_sanitize(path_file: pathlib.Path, adapt: bool = False, uniquify: b
|
256 | 242 |
|
257 | 243 | # Sanitize the whole path. The whole path with filename is not allowed to be longer then the max path length depending on the OS.
|
258 | 244 | try:
|
259 |
| - sanitized_path_file: str = sanitize_filepath( |
| 245 | + sanitized_path_file: pathlib.Path = sanitize_filepath( |
260 | 246 | sanitized_path_file, replacement_text=" ", validate_after_sanitize=True, platform="auto"
|
261 | 247 | )
|
262 | 248 | except ValidationError as e:
|
@@ -344,8 +330,15 @@ def url_to_filename(url: str) -> str:
|
344 | 330 | return basename
|
345 | 331 |
|
346 | 332 |
|
347 |
| -def receding_path(p: pathlib.Path) -> Generator[Path | Any, Any, None]: |
348 |
| - while str(p) != p.root: |
349 |
| - yield p |
| 333 | +def path_split_parts_suffix(p: pathlib.Path) -> [[str, str]]: |
| 334 | + """Splits the path to file in parts and also splits the suffix from the file stem. |
350 | 335 |
|
351 |
| - p = p.parent |
| 336 | + :param p: Path to file which should be split in parts. |
| 337 | + :type p: pathlib.Path |
| 338 | + :return: List of tuples (Stem, Suffix) of each path part. |
| 339 | + """ |
| 340 | + result: [[str, str]] = [[part, ""] for part in p.parts] |
| 341 | + result[-1][0] = p.stem |
| 342 | + result[-1][-1] = p.suffix |
| 343 | + |
| 344 | + return result |
0 commit comments