Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:12

0001 #ifndef FWCore_Utilities_resolveSymbolicLinks_h
0002 #define FWCore_Utilities_resolveSymbolicLinks_h
0003 
0004 #include <string>
0005 namespace edm {
0006   // Resolves symlinks anywhere in fullPath recursively.
0007   // If there are no symlinks, or if fullPath does not begin with '/',
0008   // fullPath will not be modified.
0009 
0010   void resolveSymbolicLinks(std::string& fullPath);
0011 }  // namespace edm
0012 
0013 #endif