1 | /* |
2 | This file is part of the KDE libraries |
3 | |
4 | SPDX-FileCopyrightText: 2000-2005 David Faure <faure@kde.org> |
5 | SPDX-FileCopyrightText: 2021 Alexander Lohnau <alexander.lohnau@gmx.de> |
6 | |
7 | SPDX-License-Identifier: LGPL-2.0-or-later |
8 | */ |
9 | #ifndef KFILEUTILS_H |
10 | #define KFILEUTILS_H |
11 | |
12 | #include "kcoreaddons_export.h" |
13 | |
14 | #include <QString> |
15 | #include <QUrl> |
16 | |
17 | /** |
18 | * @short A namespace for KFileUtils globals |
19 | * |
20 | */ |
21 | namespace KFileUtils |
22 | { |
23 | /** |
24 | * Given a directory path and a string representing a file or directory |
25 | * (which usually exist already), this function returns a suggested name |
26 | * for a file/directory that doesn't exist in @p baseURL. |
27 | * |
28 | * The suggested file name is of the form "foo (1)", "foo (2)" etc. |
29 | * |
30 | * For local URLs, this function will check if there is already a file/directory |
31 | * with the new suggested name and will keep incrementing the number in the above |
32 | * format until it finds one that doesn't exist. Note that this function uses a |
33 | * blocking I/O call (using QFileInfo) to check the existence of the file/directory, |
34 | * this could be problematic for network mounts (e.g. SMB, NFS) as these are treated |
35 | * as local files by the upstream QFile code. An alternative is to use makeSuggestedName() |
36 | * and use KIO to stat the new file/directory in an asynchronous way. |
37 | * |
38 | * @since 5.61 |
39 | */ |
40 | KCOREADDONS_EXPORT QString suggestName(const QUrl &baseURL, const QString &oldName); |
41 | |
42 | /** |
43 | * Given a string, "foo", representing a file/directory (which usually exists already), |
44 | * this function returns a suggested name for a file/directory in the form "foo (1)", |
45 | * "foo (2)" etc. |
46 | * |
47 | * Unlike the suggestName() method, this function doesn't check if there is a file/directory |
48 | * with the newly suggested name; the idea being that this responsibility falls on |
49 | * the caller, e.g. one can use KIO::stat() to check asynchronously whether the new |
50 | * name already exists (in its parent directory) or not. |
51 | * |
52 | * @since 5.76 |
53 | */ |
54 | KCOREADDONS_EXPORT QString makeSuggestedName(const QString &oldName); |
55 | |
56 | /** |
57 | * Locates all files matching the @p nameFilters in the given @p dirs |
58 | * The returned list does not contain duplicate file names. |
59 | * In case there are multiple files the one which comes first in the dirs list is returned. |
60 | * For example: |
61 | * @code |
62 | QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("krunner/dbusplugins"), QStandardPaths::LocateDirectory); |
63 | KFileUtils::findAllUniqueFiles(dirs, QStringList{QStringLiteral("*.desktop")}); |
64 | * @endcode |
65 | * @param location standard location for the dir |
66 | * @param dir directory in which the files are located |
67 | * @param nameFilters filters that get passed to the QDirIterator that is used internally to |
68 | * iterate over the files in each dir in the list |
69 | * @return list of absolute file paths |
70 | * @since 5.85 |
71 | */ |
72 | KCOREADDONS_EXPORT QStringList findAllUniqueFiles(const QStringList &dirs, const QStringList &nameFilters = {}); |
73 | } |
74 | #endif |
75 | |