- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
QString FilePath2 = QFileDialog::getOpenFileName(this, tr("Open Directory"), "C:/", tr("Text files (*.txt)"));
QDir a = FilePath2;
qDebug() << a.absolutePath();
代码工作正常。但是 absolutePath() 仍然返回路径 + 文件名,而不仅仅是路径。
C:/Users/Blastcore/Desktop/text.txt 而不仅仅是 C:/Users/Blastcore/Desktop
有什么想法吗?
最佳答案
您可以使用 QFileInfo
而不是 QDir
。用你的例子:
QString FilePath2 = QFileDialog::getOpenFileName(this, tr("Open Directory"), "C:/", tr("Text files (*.txt)"));
QFileInfo a(FilePath2);
qDebug() << a.absolutePath();
关于qt - QDir absolutePath 仍然返回文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13783876/
QString FilePath2 = QFileDialog::getOpenFileName(this, tr("Open Directory"), "C:/", tr("Text files (
我正在编写一些 Java,我的任务之一是将输入/输出转换为 html。好吧,一切都很顺利,我可以读取一些文件并获取这些文件的路径。现在我正在尝试将路径转换为普通链接: "" 效果很好,但是: 一,资源
在 WinApp 中,我只是想从 Uri 对象获取绝对路径: Uri myUri = new Uri(myPath); //myPath is a string //somewhere else in
我通过以下方式获取文本文件: JFileChooser dialog = new JFileChooser(); FileNameExtensionFilter filter = new FileNa
如何从 Request.Url.AbsolutePath 获取应用程序的相对 url? VirtualPathUtility 似乎只适用于 ~/XXX url? 最佳答案 回答有点晚了,但有一个优雅的
本文整理了Java中com.linecorp.centraldogma.server.internal.replication.ZooKeeperCommandExecutor.absolutePat
我需要重定向回当前页面减去任何查询参数。 我刚刚找到了 Request.Url.AbsolutePath,它看起来只提供了传递给 Response.Redirect() 的票证。 它似乎可以在我的开发
做这样的事情是不是一种感觉 $dir = realpath(dirname(__FILE__)); // or for php 5.3+: $dir = realpath(__DIR__) 或者
我有 C# 代码试图使用以下代码行获取正在执行的程序集的 LocalPath: Uri uri = new Uri(Assembly.GetExecutingAssembly().CodeBase).
我在C#中有这样一条语句: private static string LogPath { get { string fileP
我是一名优秀的程序员,十分优秀!