在 python 中如何找出 os.walk() 的当前路径?
因此,我让用户设置可能包含子目录(更多级别)和文件的目录的路径。
我在代码中使用 os.walk() 来扫描整个目录:
for root, subdirs, files in os.walk(thispath):
for myfile in files:
shutil.move(os.path.realpath(myfile), os.path.join(thispath,filename))
但是“os.path.realpath(myfile)”而不是给我“myfile”的绝对路径(我也尝试过“os.path.abspath(myfile)” )" 但基本上做同样的事情),给我脚本运行的路径;就像附加了 myfile 文件名的 os.chdir() 一样。基本上 os.path.realpath(myfile) = os.path.join(os.chdir(),myfile) ,而 myfile 显然位于任何其他随机目录中,所以它不应该是。
当我尝试移动该文件时,它说它不存在,这是真的,它不在它要查找的路径中。
如何获取我正在访问的文件的绝对路径(“myfile”)?
So I let a user to set a path to a directory that may contain subdirectories (more levels), and files.
I use os.walk() in my code to scan the whole directory:
for root, subdirs, files in os.walk(thispath):
for myfile in files:
shutil.move(os.path.realpath(myfile), os.path.join(thispath,filename))
but "os.path.realpath(myfile)" instead of giving me the absolute path of "myfile" (I also tried "os.path.abspath(myfile)" but does the same thing basically), gives me the path from where the script is running; just like a os.chdir() with attached the myfile filename. basically os.path.realpath(myfile) = os.path.join(os.chdir(),myfile), whereas myfile is obviously in a any other random directory, so it shouldn't be.
When I try to move that file it says that it doesn't exist, and it's true, it is not in the path it goes to look.
How do I get the absolute path of the file I am walking on ("myfile")?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)