1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:37:35 +00:00

LibCore: Add a standard downloads directory (~/Downloads)

This commit is contained in:
Andreas Kling 2020-05-05 23:56:57 +02:00
parent ae047649db
commit 76dd1e3284
3 changed files with 10 additions and 0 deletions

View file

@ -53,6 +53,14 @@ String StandardPaths::desktop_directory()
return canonicalized_path(builder.to_string());
}
String StandardPaths::downloads_directory()
{
StringBuilder builder;
builder.append(home_directory());
builder.append("/Downloads");
return canonicalized_path(builder.to_string());
}
String StandardPaths::tempfile_directory()
{
return "/tmp";

View file

@ -34,6 +34,7 @@ class StandardPaths {
public:
static String home_directory();
static String desktop_directory();
static String downloads_directory();
static String tempfile_directory();
};