1193 fileName = EricFileDialog.getSaveFileName( |
1193 fileName = EricFileDialog.getSaveFileName( |
1194 self, |
1194 self, |
1195 self.tr("Save binary file"), |
1195 self.tr("Save binary file"), |
1196 self.__lastSavePath, |
1196 self.__lastSavePath, |
1197 self.tr("All Files (*)"), |
1197 self.tr("All Files (*)"), |
1198 EricFileDialog.DontConfirmOverwrite, |
1198 options=EricFileDialog.DontConfirmOverwrite, |
1199 ) |
1199 ) |
1200 if not fileName: |
1200 if not fileName: |
1201 return False |
1201 return False |
1202 |
1202 |
1203 if pathlib.Path(fileName).exists(): |
1203 if pathlib.Path(fileName).exists(): |