Bug 383594 - KF5 applications do not use a KF5 related subdir for saving config files
Summary: KF5 applications do not use a KF5 related subdir for saving config files
Status: RESOLVED NOT A BUG
Alias: None
Product: frameworks-kdelibs4support
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: 5.36.0
Platform: Other Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: kdelibs bugs
URL:
Keywords:
Depends on:
Blocks: 380136
  Show dependency treegraph
 
Reported: 2017-08-16 13:04 UTC by Ralf Habacker
Modified: 2021-03-04 08:12 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ralf Habacker 2017-08-16 13:04:08 UTC
KF5 applications on Windows stores there config files directly below C:\Users\admin\AppData\Local\ as shown in the following example:

G:\bin>kf5-config.exe --path xdgdata
C:\Users\admin\AppData\Local\;G:\share\

where G:\ is the application install root.

Mostly applications I know uses a subdirectory below this root directory. On KDE4 times the subdirectory Roaming\.kde4\ has been used e.g. C:\Users\admin\AppData\Roaming\.kde4

Because there are more files into this directory, the result is that is is not possible to identify files belonging to KF5 applications, which may be required to be known for example for cleaning data file on a KF5 application uninstall.

Additional informations:

Parts of KF5 libraries already uses a subdirectory as shown below:

G:\bin>kf5-config.exe --path cache
C:\Users\admin\AppData\Local\cache\

I found that ksycoca databases are stored into that directory. They will probably be located into a subdirectory cache of the choosen dir.
Comment 1 Luigi Toscano 2017-09-29 21:24:48 UTC
This is not likely a KF5 issue; applications based on KF5 are simple Qt5 applications, so they use QStandardPaths.
Also, please note that kf5-config is deprecated and part of KDELibs4Support; its replacement is qtpaths, which points again in the Qt direction.

Cleaning up the files is not different from cleaning any other Qt application. I would close this as NOTABUG.