Commit 37b8eee2 by Juan Pablo dure

tiempo de espera por archivo

1 parent 3ef944e7
......@@ -56,12 +56,13 @@ class FosaDiaria():
def BuscarExcelDescargado(self,tmp="/dev/shm/tmpscdecas.txt"):
rta = ""
sleep(2)
os.system(f"""ls {self.CarpetaDescarga} -ls | grep xls 2> {tmp}""")
file1 = open(tmp, 'r')
Lines = file1.readlines()
for line in Lines:
print(line)
der = line.split(" ")[0]
der = line.split(" ")[-1]
archivo = f"""{der}"""
print(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!