Home | History | Annotate | Download | only in Support

Lines Matching refs:Exists

25 /// \brief Attempt to read the lock file with the given name, if it exists.
32 // Check whether the lock file exists. If not, clearly there's nothing
34 bool Exists = false;
35 if (sys::fs::exists(LockFileName, Exists) || !Exists)
77 // If the lock file already exists, don't bother to try to create our own
195 bool Exists = false;
201 if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists) {
204 Exists = false;
211 if (!sys::fs::exists(FileName.str(), Exists) && Exists) {