Commit 44580300 by Juan Pablo dure

wqdwq

1 parent 9432de63
...@@ -70,17 +70,17 @@ class FosaDiaria(): ...@@ -70,17 +70,17 @@ class FosaDiaria():
def _BuscarExcelDescargado(self,tmp): def _BuscarExcelDescargado(self,tmp):
rta = False rta = False
sleep(0.5) sleep(0.5)
os.system(f"""ls {self.CarpetaDescarga} -ls | grep xls | grep -v crdownload 2> {tmp}""") os.system(f"""ls {self.CarpetaDescarga} -ls |grep {self.cabezaera}| grep xls | grep -v crdownload 2> {tmp}""")
file1 = open(tmp, 'r') file1 = open(tmp, 'r')
Lines = file1.readlines() Lines = file1.readlines()
for line in Lines: for line in Lines:
der = str(line).split(" ") der = str(line).split(" ")
print(1,type(line),type(der)) #print(1,type(line),type(der))
print(2,der) #print(2,der)
archivo = f"""{self.CarpetaDescarga}{der[-1]}""" archivo = f"""{self.CarpetaDescarga}{der[-1]}"""
print(3,line,der,der[-1],archivo) #print(3,line,der,der[-1],archivo)
#print(archivo) print(archivo)
rta = archivo rta = archivo
file1.close() file1.close()
os.system(f"""rm {tmp}""") os.system(f"""rm {tmp}""")
return rta return rta
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!