mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-26 22:28:41 -05:00
Corrected "Delete all saved files in ..." command.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@494 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
1a2967e407
commit
e4f3c5d129
16
map65.py
16
map65.py
@ -781,22 +781,26 @@ def clear_avg(event=NONE):
|
|||||||
|
|
||||||
#------------------------------------------------------ delwav
|
#------------------------------------------------------ delwav
|
||||||
def delwav():
|
def delwav():
|
||||||
t="Are you sure you want to delete\nall *.WAV files in the RxWav directory?"
|
t="Are you sure you want to delete\nall *.tf2 files in " + \
|
||||||
|
options.savedir.get() + " ?"
|
||||||
msg=Pmw.MessageDialog(root,buttons=('Yes','No'),message_text=t)
|
msg=Pmw.MessageDialog(root,buttons=('Yes','No'),message_text=t)
|
||||||
msg.geometry(msgpos())
|
msg.geometry(msgpos())
|
||||||
if g.Win32: msg.iconbitmap("wsjt.ico")
|
if g.Win32: msg.iconbitmap("wsjt.ico")
|
||||||
msg.focus_set()
|
msg.focus_set()
|
||||||
result=msg.activate()
|
result=msg.activate()
|
||||||
if result == 'Yes':
|
if result == 'Yes':
|
||||||
# Make a list of *.wav files in RxWav
|
# Make a list of *.tf2 in SaveDir
|
||||||
la=dircache.listdir(appdir+'/RxWav')
|
la=dircache.listdir(options.savedir.get())
|
||||||
lb=[]
|
lb=[]
|
||||||
for i in range(len(la)):
|
for i in range(len(la)):
|
||||||
j=la[i].find(".wav") + la[i].find(".WAV")
|
j=la[i].find(".tf2") + la[i].find(".TF2")
|
||||||
if j>0: lb.append(la[i])
|
if j>0: lb.append(la[i])
|
||||||
# Now delete them all.
|
# Now delete them all.
|
||||||
|
savedir=options.savedir.get()
|
||||||
|
if savedir[-1:] != '/' and savedir[-1:] != '\\':
|
||||||
|
savedir=savedir + '/'
|
||||||
for i in range(len(lb)):
|
for i in range(len(lb)):
|
||||||
fname=appdir+'/RxWav/'+lb[i]
|
fname=savedir+lb[i]
|
||||||
os.remove(fname)
|
os.remove(fname)
|
||||||
|
|
||||||
#------------------------------------------------------ del_all
|
#------------------------------------------------------ del_all
|
||||||
@ -1266,7 +1270,7 @@ filemenu.add('command', label = 'Open next in directory', command = opennext, \
|
|||||||
filemenu.add('command', label = 'Decode remaining files in directory', \
|
filemenu.add('command', label = 'Decode remaining files in directory', \
|
||||||
command = decodeall, accelerator='Shift+F6')
|
command = decodeall, accelerator='Shift+F6')
|
||||||
filemenu.add_separator()
|
filemenu.add_separator()
|
||||||
filemenu.add('command', label = 'Delete all *.WAV files in RxWav', \
|
filemenu.add('command', label = 'Delete all *.tf2 files in SaveDir', \
|
||||||
command = delwav)
|
command = delwav)
|
||||||
filemenu.add('command', label = 'Erase Band Map and Messages', command = clr_all)
|
filemenu.add('command', label = 'Erase Band Map and Messages', command = clr_all)
|
||||||
filemenu.add('command', label = 'Erase ALL65.TXT', command = del_all)
|
filemenu.add('command', label = 'Erase ALL65.TXT', command = del_all)
|
||||||
|
Loading…
Reference in New Issue
Block a user