| 902 | } |
| 903 | |
| 904 | bool FileAccess::removeFile() |
| 905 | { |
| 906 | if(isLocal()) |
| 907 | { |
| 908 | return QDir().remove(absoluteFilePath()); |
| 909 | } |
| 910 | else |
| 911 | { |
| 912 | return mJobHandler->removeFile(url()); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | bool FileAccess::listDir(DirectoryList* pDirList, bool bRecursive, bool bFindHidden, |
| 917 | const QString& filePattern, const QString& fileAntiPattern, const QString& dirAntiPattern, |
no outgoing calls
no test coverage detected