2024-11-17 18:54:51 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
from PyQt6.QtWidgets import QFileDialog
|
2024-11-18 18:28:26 +01:00
|
|
|
from file import File
|
2024-11-17 18:54:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Utils:
|
|
|
|
def __init__(self, app):
|
|
|
|
self.app = app
|
|
|
|
|
|
|
|
self.home_path = str(Path.home())
|