systemd/man/path-documents.c

20 lines
311 B
C
Raw Normal View History

/* SPDX-License-Identifier: MIT-0 */
2020-03-24 03:36:41 +08:00
#include <stdio.h>
#include <stdlib.h>
2024-04-03 03:22:36 +08:00
#include <systemd/sd-path.h>
2020-03-24 03:36:41 +08:00
int main(void) {
int r;
2020-03-24 03:36:41 +08:00
char *t;
r = sd_path_lookup(SD_PATH_USER_DOCUMENTS, NULL, &t);
if (r < 0)
return EXIT_FAILURE;
2020-03-24 03:36:41 +08:00
printf("~/Documents: %s\n", t);
free(t);
return EXIT_SUCCESS;
2020-03-24 03:36:41 +08:00
}