Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-14 08:41:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-14 08:41:37 +0300
commita620ce7e5430b829ad6b00c8c1565226f3fbd9b5 (patch)
treea4147f6a0b480164f031957c32b75c37f172e39b /source/blender/blenkernel/intern/appdir.c
parentf12ea3d52e64dfba3170ac1465a9a451d0cb20bd (diff)
Cleanup: use dot-points for appdir platform specific paths
Diffstat (limited to 'source/blender/blenkernel/intern/appdir.c')
-rw-r--r--source/blender/blenkernel/intern/appdir.c28
1 files changed, 17 insertions, 11 deletions
diff --git a/source/blender/blenkernel/intern/appdir.c b/source/blender/blenkernel/intern/appdir.c
index 0ecf6238d3d..ce4ab8a4ba1 100644
--- a/source/blender/blenkernel/intern/appdir.c
+++ b/source/blender/blenkernel/intern/appdir.c
@@ -148,11 +148,12 @@ static char *blender_version_decimal(const int version)
* \{ */
/**
- * Get the folder that's the "natural" starting point for browsing files on an OS. On Unix that is
- * $HOME, on Windows it is %userprofile%/Documents.
+ * Get the folder that's the "natural" starting point for browsing files on an OS.
+ * - Unix: `$HOME`
+ * - Windows: `%userprofile%/Documents`
*
* \note On Windows `Users/{MyUserName}/Documents` is used as it's the default location to save
- * documents.
+ * documents.
*/
const char *BKE_appdir_folder_default(void)
{
@@ -170,7 +171,9 @@ const char *BKE_appdir_folder_default(void)
}
/**
- * Get the user's home directory, i.e. $HOME on UNIX, %userprofile% on Windows.
+ * Get the user's home directory, i.e.
+ * - Unix: `$HOME`
+ * - Windows: `%userprofile%`
*/
const char *BKE_appdir_folder_home(void)
{
@@ -182,8 +185,11 @@ const char *BKE_appdir_folder_home(void)
}
/**
- * Get the user's document directory, i.e. $HOME/Documents on Linux, %userprofile%/Documents on
- * Windows. If this can't be found using OS queries (via Ghost), try manually finding it.
+ * Get the user's document directory, i.e.
+ * - Linux: `$HOME/Documents`
+ * - Windows: `%userprofile%/Documents`
+ *
+ * If this can't be found using OS queries (via Ghost), try manually finding it.
*
* \returns True if the path is valid and points to an existing directory.
*/
@@ -218,13 +224,13 @@ bool BKE_appdir_folder_documents(char *dir)
}
/**
- * Get the user's cache directory, i.e. $HOME/.cache/blender/ on Linux,
- * %USERPROFILE%\AppData\Local\Blender Foundation\Blender\ on Windows and
- * /Library/Caches/Blender on MacOS.
+ * Get the user's cache directory, i.e.
+ * - Linux: `$HOME/.cache/blender/`
+ * - Windows: `%USERPROFILE%\AppData\Local\Blender Foundation\Blender\`
+ * - MacOS: `/Library/Caches/Blender`
*
* \returns True if the path is valid. It doesn't create or checks format
- * if the `blender` folder exists. It does check if the parent of the
- * path exists.
+ * if the `blender` folder exists. It does check if the parent of the path exists.
*/
bool BKE_appdir_folder_caches(char *r_path, const size_t path_len)
{