Steps to reproduce:
1. Select file and click "copy/move"
2. Input ".." in folder name
3. Click "move"
TC for Android will try to re-mount file system. If I click "yes", the file will move to root folder.
Please verify, thank you.
Move file to parent folder (input "..")
Moderators: Hacker, petermad, Stefan2, white
- ghisler(Author)
- Site Admin
- Posts: 50421
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Relative paths aren't currently supported. Try setting the target in the other panel first. I will check whether I can support them.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
The java.io.File class offer methods getCanonical????() which can return absolute unique file path. It could resovle the ".." and other symbols.
For example: new File("/mnt/sdcard/bluetooth/misc", "..").getCanonicalPath()
will return "/mnt/sdcard/bluetooth"
But I'm not sure it also work on Android platform. This could be a possible solution.
For example: new File("/mnt/sdcard/bluetooth/misc", "..").getCanonicalPath()
will return "/mnt/sdcard/bluetooth"
But I'm not sure it also work on Android platform. This could be a possible solution.