blob: 4b82c77be43750f26d2c81b78dc97bb1858374da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import os
from kivy.utils import platform
def get_default_download_dir() -> str:
if platform == "android":
return "/sdcard/Download"
else:
from pathlib import Path
return os.path.join(str(Path.home()), "Downloads")
|