打开特定位置的Windows资源管理器

时间:2016-02-10 05:01:57

标签: python python-2.7

我一直在努力寻找在文档中打开特定文件夹位置的Windows资源管理器。我试过了:

#include <iostream>
#include <string>
#include <ctime>

using namespace std;

int main()
{
    clock_t tStart = clock();
    string input = "50";

    for (int i = 0; i < 50000; i++)
    {
        int number = stoi(input);
    }

    cout << (double)(clock() - tStart) << endl;
    return 0;
}

欢迎所有建议!!

3 个答案:

答案 0 :(得分:4)

要在资源管理器中打开特定文件夹:

import subprocess
subprocess.Popen('explorer "D:\your_path"')

打开选择了特定文件夹的资源管理器

import subprocess
subprocess.Popen(r'explorer /select,"D:\your_path"')

答案 1 :(得分:0)

您需要添加subprocess.Popen函数调用的实际路径。使用此

import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')

答案 2 :(得分:0)

要打开特定位置的资源管理器:

import subprocess
subprocess.Popen('explorer "C:\path\to\folder"')