mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-03-17 00:57:29 +08:00
Adding check for valid output path
This commit is contained in:
@@ -586,6 +586,11 @@ def main() -> int:
|
|||||||
if not args.input.is_file():
|
if not args.input.is_file():
|
||||||
logger.critical("Input path is not a file")
|
logger.critical("Input path is not a file")
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
# Output file won't exist yet, but the parent directory should.
|
||||||
|
if not args.output.parent.exists():
|
||||||
|
logger.critical(f"Output directory does not exist: {args.output}")
|
||||||
|
return 1
|
||||||
|
|
||||||
# set logger level
|
# set logger level
|
||||||
if os.environ.get("LOGURU_LEVEL") is None:
|
if os.environ.get("LOGURU_LEVEL") is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user