Skip to content

Commit

Permalink
#143 ドライブリスト⇔ネットワークリソースリスト⇔ファイルリストの移動ができるようになった
Browse files Browse the repository at this point in the history
  • Loading branch information
yamahubuki committed Jul 10, 2020
1 parent 13c0dcc commit d43289f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
1 change: 0 additions & 1 deletion tabs/NetworkResourceList.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class NetworkResourceListTab(base.FalconTabBase):
"EDIT_CUT",
"EDIT_PAST",
"EDIT_SEARCH",
"MOVE_BACKWARD",
"MOVE_FORWARD_TAB",
"MOVE_TOPFILE",
"TOOL_DIRCALC",
Expand Down
17 changes: 14 additions & 3 deletions tabs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import json
import logging
import os
import re

import wx
import browsableObjects
Expand Down Expand Up @@ -626,20 +627,30 @@ def GoForward(self,stream,admin=False):
def GoBackward(self):
"""内包しているフォルダ/ドライブ一覧へ移動する。"""
self.StopSound()
if len(self.listObject.rootDirectory)<=3: #ドライブリストへ
if len(self.listObject.rootDirectory)<3: #ドライブリストへ
target=""
cursorTarget=self.listObject.rootDirectory[0]
else:
root=self.listObject.rootDirectory
while(True):
if len(self.listObject.rootDirectory)<=3: #ドライブリストへ
if len(self.listObject.rootDirectory)<3: #ドライブリストへ
target=""
cursorTarget=self.listObject.rootDirectory[0]
break
#end 下がっていってドライブリスト
spl=os.path.split(root)
target=spl[0]
if os.path.isdir(target):
if(target==root and root[0:2]=="\\\\"):
#\\hoge\\fuga の階層のみ、os.path.split()しても結果が変わらない
target=re.sub("(\\\\\\\\[^\\\\]+).+","\\1",target)
cursorTarget=re.sub("\\\\\\\\[^\\\\]+(.+)","\\1",target)
result=self.Move(target,cursorTarget)
if(type(result)!=int):
return result
else:
cursorTarget=target
target=""
elif os.path.isdir(target):
cursorTarget=spl[1]
break
#end 移動先が存在するので抜ける
Expand Down

0 comments on commit d43289f

Please sign in to comment.