omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. dnino99
    3. Topics

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by dnino99

    • dnino99

      How can I transfer folder from Ver 3 to Ver 2
      Pythonista • • dnino99

      2
      0
      Votes
      2
      Posts
      1490
      Views

      dgelessus

      You can use the following commands in the Pythonista 3 Python console to copy the folder back:

      >>> import os, shutil >>> shutil.copytree(os.path.expanduser("~/Documents/foldername"), os.path.expanduser("~/../Documents/foldername"))

      where foldername is the name of the folder you want to copy (assuming that it's in the root of Pythonista 3's local files). You can also use shutil.move instead of shutil.copytree if you want to move the folder rather than copy it (which may be a good idea if it's very big).

      By the way, is there any reason in particular why you're still using Pythonista 2? Pythonista 3 supports both Python 2 and 3, so there's generally no need for Pythonista 2 if you have Pythonista 3. In fact Pythonista 2 can no longer be bought on the App Store and won't receive any more updates.

    • dnino99

      Transfer folder from iphone to ipad
      Pythonista • ipad iphone transfer files • • dnino99

      9
      0
      Votes
      9
      Posts
      6241
      Views

      cvp

      @ccc Done, thanks and sorry, I always try to not forget it, but, my memory is often overloaded 😢