CMS 3D CMS Logo

Functions
copyFiles Namespace Reference

Functions

def main ()
 

Function Documentation

◆ main()

def copyFiles.main ( )

Definition at line 6 of file copyFiles.py.

References beamvalidation.exit(), eostools.ls(), and print().

6 def main():
7  if len(sys.argv) < 3:
8  error = "Usage: copyFiles.py fromDir destDir (optional filter)"
9  exit(error)
10  fromDir = sys.argv[1]
11  print(fromDir)
12  if (fromDir[len(fromDir)-1] != '/'):
13  fromDir += '/'
14  destDir = sys.argv[2] + "/"
15  filter = ""
16  if len(sys.argv) > 3:
17  filter = sys.argv[3]
18  fileList = ls(fromDir,filter)
19  copiedFiles = cp(fromDir,destDir,fileList)
20 
21  if len(copiedFiles) != len(fileList):
22  error = "ERROR: I couldn't copy all files from " + fromDir
23  exit(error)
24 
def main()
Definition: copyFiles.py:6
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def ls(path, rec=False)
Definition: eostools.py:349
def exit(msg="")