如何使用 2to3 翻译目录中的所有文件

How to use 2to3 to translate all files in a directory

我可以翻译一个文件。但我不明白如何翻译整个目录。来自文档:

To translate an entire project from one directory tree to another use:
$ 2to3 --output-dir=python3-version/mycode -W -n python2-version/mycode

能举个具体的例子吗?我在 D:\Dir1 中有 python2 个文件,想在 D:\Dir2 中获取新文件。我现在在 Dir1 内的命令提示符中输入 c:\Users\........\Python36\Tools\scriptsto3.py -w

那么我应该使用什么命令?

尝试以下操作:

D:\Dir1> c:\Users........\Python36\Tools\scriptsto3.py --output-dir=D:\Dir2 -W -n .\

注意是-W(大写W)。


例如,我 运行 我的主目录中的脚本:

┌─[hjpotter92:Hedwig]─[C:\Users\hjpotter92]
└──$ "C:\Program Files\Python\Tools\Scriptsto3.py" -o Downloads\newFoo -W -n Downloads\Foo