I can open the gui and it 'mounts' my tab just fine, copying back and forth between my home directory and the tab works fine. I can not however navigate any deeper than my home/$user directory. If I try opening a folder, it simply doesn't work. This is the output I get when I try:
Traceback (most recent call last):
File "/usr/bin/aafm-gui", line 153, in host_navigate_callback
self.refresh_host_files()
File "/usr/bin/aafm-gui", line 171, in refresh_host_files
self.host_treeViewFile.load_data(self.dir_scan_host(self.host_cwd))
File "/usr/bin/aafm-gui", line 229, in dir_scan_host
size = os.path.getsize(path)
File "/usr/lib/python2.7/genericpath.py", line 49, in getsize
return os.stat(filename).st_size
OSError: [Errno 2] No such file or directory: '/home/$user/Videos/Videos'
The folder I am trying to access is /home/$user/Videos. For some reason, it appends an extra '/Videos' to it which doesn't exist. If I create a /home/$user/Videos/Videos symlink that simply points to /home/$user/Videos I can open it though.
Issue by b9anders Sunday Mar 04, 2012 at 14:47 GMT Originally opened as https://github.com/sole/aafm/issues/17
I can open the gui and it 'mounts' my tab just fine, copying back and forth between my home directory and the tab works fine. I can not however navigate any deeper than my home/$user directory. If I try opening a folder, it simply doesn't work. This is the output I get when I try:
Traceback (most recent call last): File "/usr/bin/aafm-gui", line 153, in host_navigate_callback self.refresh_host_files() File "/usr/bin/aafm-gui", line 171, in refresh_host_files self.host_treeViewFile.load_data(self.dir_scan_host(self.host_cwd)) File "/usr/bin/aafm-gui", line 229, in dir_scan_host size = os.path.getsize(path) File "/usr/lib/python2.7/genericpath.py", line 49, in getsize return os.stat(filename).st_size OSError: [Errno 2] No such file or directory: '/home/$user/Videos/Videos'
The folder I am trying to access is /home/$user/Videos. For some reason, it appends an extra '/Videos' to it which doesn't exist. If I create a /home/$user/Videos/Videos symlink that simply points to /home/$user/Videos I can open it though.