Commit 37b8eee2 by Juan Pablo dure

tiempo de espera por archivo

1 parent 3ef944e7
...@@ -56,12 +56,13 @@ class FosaDiaria(): ...@@ -56,12 +56,13 @@ class FosaDiaria():
def BuscarExcelDescargado(self,tmp="/dev/shm/tmpscdecas.txt"): def BuscarExcelDescargado(self,tmp="/dev/shm/tmpscdecas.txt"):
rta = "" rta = ""
sleep(2)
os.system(f"""ls {self.CarpetaDescarga} -ls | grep xls 2> {tmp}""") os.system(f"""ls {self.CarpetaDescarga} -ls | grep xls 2> {tmp}""")
file1 = open(tmp, 'r') file1 = open(tmp, 'r')
Lines = file1.readlines() Lines = file1.readlines()
for line in Lines: for line in Lines:
print(line) print(line)
der = line.split(" ")[0] der = line.split(" ")[-1]
archivo = f"""{der}""" archivo = f"""{der}"""
print(archivo) print(archivo)
rta = archivo rta = archivo
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!