搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
weixin_40725706
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
ChatGPT扩展系列之ChatGPT 生成图片_chatgpt生产图片
2
【Unity Shader】Properties属性定义中bool类型无法使用的替代_unity shader bool
3
Java 使用正则表达式提取字符串中的时间(年月日时分秒)_java正则找出年月日时分秒的函数
4
面试 JavaScript 框架八股文十问十答第七期
5
TResNet: ResNet改进,实现高精度的同时保持高 GPU 利用率_resnet50 stem块
6
R语言学习笔记——空间自相关:全局Moran’I/局部Moran’I /Geary’c/Moran散点图_r语言 空间自相关
7
Windows 下后台启动 jar 包,UTF-8 启动 jar 包_windows启动jar
8
linux日志管理_viovio手机怎么查激活日期
9
spring mvc整合shiro登录 权限验证_systemauthorizingrealm
10
点云综述一稿 点云硬件、点云软件、点云处理算法、点云应用以及点云的挑战与展望
当前位置:
article
> 正文
QT小程序:QDir_qdir currentdir("/desktop");
作者:weixin_40725706 | 2024-03-05 23:37:10
赞
踩
qdir currentdir("/desktop");
#include <QApplication>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QString>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QDir dir(".");
qDebug() << dir.exists();
QDir dir2("/home/zxw");
qDebug() << dir2.exists();
QDir dir3("/home/zxw/Desktop/mytest/123");
qDebug() << dir3.exists();
QDir dir4;
foreach(QFileInfo item, dir4.drives())
{
qDebug() << item.absoluteFilePath();
}
QDir dir5;
QString dirPath("/home/zxw/Desktop/mytest/123");
if(!dir5.exists(dirPath))
{
dir5.mkpath(dirPath);
qDebug() << "Created.";
}
else
{
qDebug() << "Already exist.";
}
QDir dir6("/home/zxw/Desktop/mytest");
foreach(QFileInfo item, dir6.entryInfoList())
{
if(item.isDir())
qDebug() << "Dir: " << item.absoluteFilePath();
else if(item.isFile())
qDebug() << "File: " << item.absoluteFilePath();
else
qDebug() << "Others.";
}
return a.exec();
}
本文内容由网友自发贡献,转载请注明出处:
https://www.wpsshop.cn/w/weixin_40725706/article/detail/194601
推荐阅读
article
使用
Docker
Desktop
安装 Centos 系统_
docker
安装
centos
容器
...
由于
Docker
是一个
容器
,它支持在一个服务器进行多服务部署,并且还能保持服务的独立性,那么,在
Docker
上的运...
赞
踩
article
C:\
Users
\
Administrator
\
Desktop
\
xiaoyu
\
project
>pyth...
环境变量中添加路径 C:\
Users
\
Administrator
\AppData\Local\Programs\Pyth...
赞
踩
article
windows
安装
docker
异常解决_
docker
desktop
requires
windo...
安装完后得到三个应用:1.虚拟机、2.Docker的GUI版本、3.Docker的命令行环境,点击 Docker Qui...
赞
踩
article
Permission
Error: [Errno 13]
Permission
denied
: 'C:...
目录报错报错
Permission
Error: [Errno 13]
Permission
denied
: ‘C:\Use...
赞
踩
article
【
Docker
】在
Windows
下使用
Docker
Desktop
创建
nginx
容器并访问默认网站_...
前几篇
Docker
相关文章,已经介绍了什么是
docker
以及它在
Windows
操作系统下安装的安装和配置。本篇文章主要介...
赞
踩
article
VMware
安装
Kylin
-
Desktop
-V10-SP1-
General
-
Release
-2203...
VMware
安装
Kylin
-
Desktop
-V10-SP1-
General
-
Release
-2203-X86_64.is...
赞
踩
article
CentOS
服务器
安装宝塔并搭建网站_"
yum
-y
groupinstall
\"
gnome
de...
前言:买了个Linux
服务器
,今天决定试试宝塔面板建立图形化界面:为了方便我们的使用,我们先给Linux
服务器
创建图形化...
赞
踩
article
gitee
首次克隆到本地报错解决方案_
message
:发生错误
error
: c:\
users
\ad...
gitee
克隆失败_
message
:发生错误
error
: c:\
users
\
administrator
\
desktop
...
赞
踩
article
安卓,
windows
系统远程
ubuntu
服务器
_
termutx
x
ubuntu
desktop
...
1.非图形桌面连接(1)安卓手机连接工具termux:https://github.com/termux/termux-...
赞
踩
article
github
(
desktop
)使用教程(三)【保姆级】
PLUS
{
创建
仓库
,
各按钮
的
功能
,
界面功能介绍...
此篇详细介绍如何
创建
仓库
(实战)
创建
仓库
点击create a new
repository
on your hard d...
赞
踩
article
使用
Docker
将
vue
+
springboot
项目
部署
在
服务器
上_
vue
springboot
do...
docker
使用
部署
springboot
部署
vue
docker
网络_
vue
springboot
docker
d...
赞
踩
article
windows
版
docker
desktop
学习笔记——7.
docker
-
compose
容器
编排...
docker
容器
编排,主要用于多个有关联关系的
容器
管理,例如
容器
有依赖关系,微服务启动依赖于中间件,需要中间件先启动,...
赞
踩
article
【Andriod】
Appium
的不同
版本
(
Appium
GUI
、
Appium
Desktop
、App...
**`
Appium
的核心就是
Appium
Server
`,使用` node.js` 语言实现,所以在安装 Appiu...
赞
踩
article
appnium
自动化---
appium
Server
和
appium
-
desktop
安装
过程详解_a...
一.
安装
appium
Server
在Appium官方网站下载操作系统相应的Appium版本https://bitbuc...
赞
踩
article
微软官方
Microsoft
Remote
Desktop for Mac_
microsoft
rem...
时候还是需要用到windows系统上的数据或者软件,除了使用第三方开发商的远程桌面工具外,微软公司也提供了Mac版(iM...
赞
踩
article
Ubuntu
Desktop
22.04
.2配置
xrdp
连接_
ubuntu
xrdp
...
注意由于已经是桌面版系统,无需安装x
ubuntu
桌面,建议直接安装desktop版本,server版本则建议安装Ubun...
赞
踩
相关标签
docker
centos
容器
linux
服务器
运维
ssh
BUG
windows
docker-toolbox
VirtualBox
nginx
人工智能
麒麟
website
git
ubuntu
github
springboot
vue
mysql