• 8651阅读
  • 7回复

如何用程序打开一个目录 [复制链接]

上一主题 下一主题
离线lhca
 
只看楼主 正序阅读 楼主  发表于: 2010-12-17
如题,我在win下编程。

比如,做一个按钮,点击按钮打开指定的路径目录
离线luoyes

只看该作者 7楼 发表于: 2010-12-22
mark
离线lhca
只看该作者 6楼 发表于: 2010-12-21
回 5楼(cycloneii) 的帖子
谢谢,  用QFileDialog打开不能像在win下打开目录那样的效果.

而且不需要选择文件,不需要按钮.
离线cycloneii

只看该作者 5楼 发表于: 2010-12-20
为什么不用QFileDialog呢?
如果你是想打开一个目录,然后选择目录下的文件,用QFileDialog::getOpenFileName,选择多个文件用QFileDialog::getOpenFileNames,选择目录QFileDialog::getExistingDirectory,选择要保存的文件用QFileDialog::getSaveFileName。
如果你什么都不想干,那就直接new一个QFileDialog
离线lhca
只看该作者 4楼 发表于: 2010-12-20
回 2楼(jdwx) 的帖子
谢谢楼上两位的帮助,两位的都可以.

有几个问题,     用openUrl打开路径不知道为什么第一次非常慢,以后就可以了。
  用explorer的方法能移植到其他操作系统吗???

离线lxbin2003

只看该作者 3楼 发表于: 2010-12-19
bool QDesktopServices::openUrl ( const QUrl & url )   [static]
Opens the given url in the appropriate Web browser for the user's desktop environment, and returns true if successful; otherwise returns false.

If the URL is a reference to a local file (i.e., the URL scheme is "file") then it will be opened with a suitable application instead of a Web browser.

The following example opens a file on the Windows file system residing on a path that contains spaces:

QDesktopServices::openUrl(QUrl("file:///C:/Documents and Settings/All Users/Desktop", QUrl::TolerantMode));
If a mailto URL is specified, the user's e-mail client will be used to open a composer window containing the options specified in the URL, similar to the way mailto links are handled by a Web browser.

For example, the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test):

mailto:user@foo.com?subject=Test&body=Just a test
离线jdwx

只看该作者 2楼 发表于: 2010-12-18
QProcess *p=new QProcess(this);
QString strdir=QDir::currentPath();
QStringList param;
param<<QDir::convertSeparators(strdir);
p->start(QString("explorer"),param);
打开程序所在目录。
发帖时要说明:操作系统、Qt版本、编译器,这样能更快的得到回复。
离线roywillow

只看该作者 1楼 发表于: 2010-12-17
请问这个“打开”是什么意思?
弹出资源管理器到指定目录?
专业维修核潜艇,回收二手航母、二手航天飞机,大修核反应堆,拆洗导弹发动机更换机油,无人侦察机手动挡改自动,航天飞机保养换三滤,飞碟外太空年检 ,各型号导弹加装迎宾踏板,高空作业擦洗卫星表面除尘、打蜡及抛光,东风全系列巡航导弹。并提供原子对撞机。量大从优,有正规发票。
快速回复
限100 字节
 
上一个 下一个