| 87 | } |
| 88 | |
| 89 | std::string PropertyFileIncluded::getUniqueFileName(const std::string& path, |
| 90 | const std::string& filename) const |
| 91 | { |
| 92 | Base::Uuid uuid; |
| 93 | Base::FileInfo fi(path + "/" + filename); |
| 94 | while (fi.exists()) { |
| 95 | fi.setFile(path + "/" + filename + "." + uuid.getValue()); |
| 96 | } |
| 97 | |
| 98 | return fi.filePath(); |
| 99 | } |
| 100 | |
| 101 | std::string PropertyFileIncluded::getExchangeTempFile() const |
| 102 | { |