summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qfile.cpp')
-rw-r--r--src/corelib/io/qfile.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/corelib/io/qfile.cpp b/src/corelib/io/qfile.cpp
index e031e9c091..471d73fcb6 100644
--- a/src/corelib/io/qfile.cpp
+++ b/src/corelib/io/qfile.cpp
@@ -1173,6 +1173,46 @@ qint64 QFile::size() const
\since 6.0
\overload
*/
+/*!
+ \fn bool exists(const std::filesystem::path &fileName)
+ \since 6.3
+ \overload
+*/
+/*!
+ \fn std::filesystem::path QFile::filesystemSymLinkTarget() const
+ \since 6.3
+ Returns symLinkTarget() as \c{std::filesystem::path}.
+*/
+/*!
+ \fn std::filesystem::path QFile::filesystemSymLinkTarget(const std::filesystem::path &fileName)
+ \since 6.3
+ Returns symLinkTarget() as \c{std::filesystem::path} of \a fileName.
+*/
+/*!
+ \fn bool remove(const std::filesystem::path &fileName)
+ \since 6.3
+ \overload
+*/
+/*!
+ \fn bool moveToTrash(const std::filesystem::path &fileName, QString *pathInTrash)
+ \since 6.3
+ \overload
+*/
+/*!
+ \fn bool rename(const std::filesystem::path &oldName, const std::filesystem::path &newName)
+ \since 6.3
+ \overload
+*/
+/*!
+ \fn bool link(const std::filesystem::path &fileName, const std::filesystem::path &newName);
+ \since 6.3
+ \overload
+*/
+/*!
+ \fn bool copy(const std::filesystem::path &fileName, const std::filesystem::path &newName);
+ \since 6.3
+ \overload
+*/
QT_END_NAMESPACE