mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Fix syntax for opening explorer and selecting the filename. Fix a bug in the downloads_dir for Windows (need to use a backslash)
This commit is contained in:
parent
388f968556
commit
f45eae5768
@ -105,9 +105,13 @@ class Settings(object):
|
||||
"""
|
||||
Returns the path of the default Downloads directory for receive mode.
|
||||
"""
|
||||
# TODO: Test in Windows, though it looks like it should work
|
||||
# https://docs.python.org/3/library/os.path.html#os.path.expanduser
|
||||
return os.path.expanduser('~/OnionShare')
|
||||
# On Windows, os.path.expanduser() needs to use backslash, or else it
|
||||
# retains the forward slash, which breaks opening the folder in explorer.
|
||||
p = platform.system()
|
||||
if p == 'Windows':
|
||||
return os.path.expanduser('~\OnionShare')
|
||||
else:
|
||||
return os.path.expanduser('~/OnionShare')
|
||||
|
||||
def load(self):
|
||||
"""
|
||||
|
@ -96,7 +96,7 @@ class File(QtWidgets.QWidget):
|
||||
|
||||
# Windows
|
||||
elif self.common.platform == 'Windows':
|
||||
subprocess.Popen(['explorer', '/select', abs_filename])
|
||||
subprocess.Popen(['explorer', '/select,{}'.format(abs_filename)])
|
||||
|
||||
|
||||
class Upload(QtWidgets.QWidget):
|
||||
|
Loading…
Reference in New Issue
Block a user