有没有办法用python代码访问文件夹内的文件夹?

时间:2019-07-09 17:49:19

标签: python-3.x windows

我正在处理一些代码,以接受用户输入,以帮助他们在Windows系统中打开文件夹。我想访问文件夹中的文件夹,但似乎无法为当前代码弄清楚。

while True:
        choice1 = input("Please enter the A# value to go to the desired project.\n")
        if choice1 == 'A1':
            subprocess.Popen(r'explorer /select,"C:\Eng\Active"')

这是我一直在使用的;我想走得更远,然后访问该Active文件夹中的文件,该文件夹位于C:上的Eng文件夹中。

例如。) subprocess.Popen(r'explorer / select,“ C:\ Eng \ Active \ Space”')

我有办法深入研究这些文件夹吗?

0 个答案:

没有答案