E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
currentPath
Qt QProcess 调用linux shell脚本
主要代码如下:QProcess*p_process=newQProcess(this);QDir*dir=newQDir(QDir::
currentpath
());QStr
jhonsss
·
2024-02-13 08:44
Qt_Learing
qt
开发语言
Qt点击按钮打开图片
voidMainWindow::on_pushButton_clicked(){QStringfilename=QFileDialog::getOpenFileName(this,tr(“openfile”),QDir::
currentPath
柳暗花明、又一春
·
2024-01-31 01:56
QT编程
qt
Qt-QFileDialog保存文件及获取带扩展名的文件名
正确用法QFileDialogdialog(this,"SaveFile",QDir::
currentPath
(),"TextFiles(.txt)");dialog.setAcceptMode(QFileDialog
mrbone11
·
2024-01-24 09:03
Qt
qt
数据库
开发语言
QFileDialog
保存
QT文件操作-打开并读取文本
一、文本方式读取文件voidMainWindow::on_pushButton_pressed(){QStringcurpath=QDir::
currentPath
();//保存当前路径QStringdlgTitle
狐冲君
·
2024-01-16 16:46
QT
Qt 路径处理
1、路径拼接QDir::separator():路径分割符号;QDir::cleanPath():消除windows与linux下"/","\\"的拼接问题;QDir::
currentPath
():当前工作目录
alex1801
·
2023-12-25 17:53
c++
qt
开发语言
QTableWidge中插入图片作为图标
QLabel*label=newQLabel();QPixmappixmap(QDir::
currentPath
()+"/operation.png");label->setPixmap(pixmap)
djykkkkkk
·
2023-12-19 08:44
#
Qt
数据库
服务器
Qt写注册表
QStringstrPath=QDir::
currentPath
();strPath.replace("/","\\");QSettings*settings=newQSettings("HKEY_CLASSES_ROOT
小肚哥
·
2023-11-28 14:20
qt中获取当前目录
中获取当前目录需要注意几个坑,以linux环境为例当前路径有两种可能一是可执行程序所在目录二是执行命令时所在的目录,如我在/目录下在命令行执行/usr/local/ls命令,这时候的目录就是/目录先上代码:QDir::
currentPath
小土同学!
·
2023-11-23 20:39
qt
开发语言
linux
Linux+qt:获取.so自身的路径(利用dladdr)
目录1、QDir::
currentPath
()2、QAppllication::appllicationDirPath()3、获取.so自身的路径(利用dladdr)Qt中,也有相关的接口获取程序的相关路径的
Ivy_belief
·
2023-11-16 19:42
Linux
qt
开发语言
获取.so自身的路径
Python之文件与文件夹操作
Pathlib#通过cwd()获得当前工作目录#通过home()获得主目录frompathlibimportPathcurrentPath=Path.cwd()print(f"Currentdirectory:{
currentPath
微笑伴你而行
·
2023-11-09 00:34
Python
python
windows
开发语言
linux shell脚本修改ini配置文件[session]下的键值
/bin/bash#获取当前路径
currentPath
=$(cd`dirname$0`;pwd)#配置文件路径config_file="$
currentPath
/systemFlag.ini"#设置新的
只是个~小不点
·
2023-11-07 12:35
shell
脚本
linux
脚本
QT 启动与关闭外部程序
启动QStringfilepath=QDir::
currentPath
();QStringfullpath=filepath+"\\pp\\dist\\start";QStringtitle=fullpath
听取哇声一片_11c4
·
2023-11-05 16:35
Qt文件对话框
打开文件:voidDialog::on_btnOpen_clicked(){//选择单个文件QStringcurPath=QDir::
currentPath
();//获取系统当前目录//QStringcurPath
Alphapeople
·
2023-11-04 22:10
qt
开发语言
57 # 目录操作
a/b");不然会报错下面实现没有父路径存在也能创建成功的方法同步方法:functionmkdirSyncP(paths){letarr=paths.split("/");for(leti=0;i",
currentPath
凯小默
·
2023-10-24 17:55
Node
/
Node
框架
前端工程架构
fs
Qt文件系统模型
创建文件系统模型:QFileSystemModel*model=newQFileSystemModel(this);设置根目录:model->setRootPath(QDir::
currentPath
(
Alphapeople
·
2023-10-20 14:25
qt
开发语言
qt 打印当前路径
//当前根目录qDebug()<<QDir::
currentPath
();//当前exe目录qDebug()<<QCoreApplication::applicationDirPath
bangtan辉
·
2023-09-23 18:22
qt
Qt打开一个文件进行读写完整代码
打开文件,并读取文件的内容:voidMainWindow::on_actQFile_open_triggered(){QStringpath=QDir::
currentPath
();QStringdlgTitle
Fuxiao365
·
2023-09-02 07:19
QT编程学习
qt
开发语言
设置环境变量批处理
@echooffrem获取当前路径setCurrentPath=%~dp0echo%
CurrentPath
%remcd/d%
CurrentPath
%rem========================
爱蹄子的羊头
·
2023-08-28 18:55
Qt的QDir类
Qt的QDir类是在QtCore模块中,python获取当前路径的语句为:QtCore.QDir.
currentPath
()C++类似。
ShyHG
·
2023-08-28 05:54
C++
Qt 绝对路径 相对路径 记录
一、绝对路径//<获取exe文运行时所在的绝对路径app.applicationDirPath()//<获取工作目录的绝对路径,不同情况,返回的目录可能不同QDir::
currentPath
()关于QDir
137900340
·
2023-08-26 07:33
Qt
qt5
QT中读写文件操作
include#include#include#include1.打开文件QStringfileName=QFileDialog::getOpenFileName(this,"OpenFile",QDir::
currentPath
Mr.Kyle
·
2023-08-08 02:36
❤【QT】
qt
python中返回上上级目录的命令
./..')2、返回后需要确认目录,打印目录出来,命令如下:importoscurrentPath=os.getcwd().replace('\\','/')#获取当前路径print(
currentPath
希尔1545
·
2023-07-21 20:33
python
python pyqt5 打开文件夹 读取文件列表
[]#文件列表self.file_index=0#文件索引导入文件夹#导入文件夹@pyqtSlot()defon_btnImportFolder_clicked(self):cur_dir=QDir.
currentPath
廷益--飞鸟
·
2023-06-11 21:06
python
GUI
Qt中的webenginewidgets模块
QWebEngineViewview;view.setUrl(QUrl("https://www.baidu.com"));view.resize(1024,750);view.show();(4)QDir::
currentPath
kaixin_learn_qt_ing
·
2023-06-10 19:10
qt
开发语言
QProcess的简单使用
includeintmain(intargc,char*argv[]){QApplicationapp(argc,argv);//设置QT环境变量的插件路径QStringpluginPath=QDir::
currentPath
晨风先生
·
2023-06-10 17:16
c++
qt
开发语言
Qt读取XML文件
xml文件格式读取代码QFilefile;QStringnodename;QStringoutData;file.setFileName(QDir::
currentPath
()+"\\doc\\chinese_makin_v1.0.2
XXYBMOOO
·
2023-04-21 18:42
qt
xml
03.【手写vue-router】初始化路由信息
发生变化后都要保存当前地址判断打开的界面有没有路径,如果没有就跳转到/加载完成之后和history发生变化之后都需要保存当前的地址classmyRouteInfo{constructor(){this.
currentPath
章音十
·
2023-03-29 03:16
一个使用UIBezierPath搭配UIImage做的简易画板
核心代码:-(void)drawRect:(CGRect)rect{if(self.drawResult){[self.drawResultdrawInRect:self.bounds];}if(self.
currentPath
狂暴的土豆泥
·
2023-02-05 09:46
python 时间序列分解 stl_jupyter notebook运行时间序列分解STL趋势和季节
ImportError:Nomodulenamed"whentryingtorunPythonscriptnotebook不知道module的路径在哪,默认只知道
currentpath
先找到包所在位置pipshow
weixin_39922868
·
2022-12-24 11:42
python
时间序列分解
stl
PyQt5报错Process finished with exit code -1073740791 (0xC0000409)
使用pyqt设计了一个界面,然后写了一个读取文件的函数,其中读取文件部分代码:curPath=QDir.
currentPath
()#获取系统当前目录title="打开一个文件"filt="文本文件(*.
门前塘
·
2022-12-12 10:20
python
PyCharm
pyqt5
pyqt5
【MATLAB项目实战】基于CNN_SVM的图像花卉识别
代码中可以更换不同的CNN网络:AlexNetVGG16VGG19ResNet50clc;clearall;%%划分数据集pwd='C:\Users\yuanyuan\Desktop\CNN_SVM\data';%路径
currentPath
大桃子技术
·
2022-11-27 09:54
项目实战MATLAB
支持向量机
matlab
cnn
qt中连接sqlite数据库提示QSQLITE driver not loaded解决办法(重要)
2、程序中添加以下代码QStringpath=QDir::
currentPath
();QApplication::addLibraryPath(path+QString("/plugins
luckyone906
·
2022-11-16 01:43
QT-笔记
编码日记
项目配置
迁移
编译
数据库
qt
sqlite
python将指定文件夹中的图像数据通过亮度和对比度改变进行数据增强
8importcv2fromPILimportImagefromPILimportImageEnhancefromnumpy.maimportarrayimportnumpyasnpimportos#批量处理代码rootdir='F:/danzi/数据/4'#指明被遍历的文件夹defhigh_bright(
currentPath
AI炮灰
·
2022-05-13 17:36
深度学习实战代码40例
python
计算机视觉
opencv
图像数据增强
用IE edge 当图像浏览器的脚本
一次性读取这些文件夹内的图像写入一个html内;脚本如下:importoscurrentpath=r'C:\Users\super.000\Desktop\手绘光碟图(ED2000.COM)'s=''os.chdir(
currentpath
圣_狒司机
·
2021-05-20 11:20
makefile出现错误却不停止,却继续运行
gotoeverysubfoler(singlebook)'ssrcdirtodo'makexxx'actioncleanclean_allclean_releaseallreleaserelease_copy:@echo"
Currentpath
雜貨鋪老闆
·
2020-09-14 21:39
Makefile
QString QDir::
currentPath
()与QString QCoreApplication::applicationDirPath()
QStringQDir::
currentPath
()Returnstheabsolutepathoftheapplication’scurrentdirectory
theRookie1
·
2020-09-14 07:25
Qt5.11
Linux Shell脚本中常用的操作
/bin/bash#1.
currentpath
#method1:current_d
anickname
·
2020-09-11 14:05
linux
开机自启,始终在最前面
//开机启动函数voidCCommWizardDlg::OnBnClickedCheckStart(){CStringstr;//添加注册表路径WCHAR*
CurrentPath
=newWCHAR[sizeof
小杰博客
·
2020-08-26 16:04
c++
MFC
yangTime#False
frombs4importBeautifulSoupfromseleniumimportwebdriverimporttimedefparseXPath(soupElement,
currentPath
=
qq_38065133
·
2020-08-26 13:23
control
python 批量修改文件名和图片xml内的path、folder
os.listdir(r"C:\Users\83543\Desktop\bytrain\beerbottle")#待修改文件夹print("修改前:"+str(fileList))#输出文件夹中包含的文件
currentpath
乱搭巴士
·
2020-08-25 11:14
python
五、Qt之读取、写入文件
通用代码准备/***@brief读文件*/QStringMyMainWindow::openFile(){QStringcurPath=QDir::
currentPath
();QStringdlgTitle
咸鱼最牛逼
·
2020-08-21 07:09
QT
PHP框架开发之Route路由简单实现
Laravel路由的使用方式,来效仿一个简单的路由实现方式classRoute{/***@var$_instance//实例*/privatestatic$_instance=null;/***@var$_
currentPath
逆袭清风
·
2020-08-21 03:26
php
lavarel
框架
route
android 截取canvas内容生成bitmap图片
Bitmap.createBitmap(getWidth(),getHeight(),Bitmap.Config.ARGB_8888);Canvascanvas=newCanvas(bitmap);if(
currentPath
JesseAndroid
·
2020-08-20 13:12
android常用记录
QT工程看不到头文件和源文件qmake失败stat(".")failed问题解决
今天突然不正常了:在Ubuntu12.04中使用QtCreator打开,工程目录全在,但是”头文件“和”源文件“目录全部消失,qmake失败,从”编译输出“可以看到QFileSystemEngine::
currentPath
攻城诗赋
·
2020-08-18 15:23
QT
坑
邮件自动分发-02-含有两个附件
软件实现今天讲讲如何增加附件Part1:示例分发一个邮件,含有两个附件邮件分发结果其它邮件信息Part2:代码Sub邮件预警()Setsht=ThisWorkbook.Worksheets("示例")
currentPath
Data_Python_VBA
·
2020-08-16 17:57
Excel-VBA
用自己的数据集制作类似于Cifar-10格式的数据集
fromPILimportImageimportosimportnumpyasnpimportpickledata={}list1=[]list2=[]list3=[]defimg_tra():forkinrange(0,num):
currentpath
despacito,
·
2020-08-16 07:14
深度学习
Qt 打开文件对话框
28b5850098f3ae97e950cdfa.html1.打开单个文件QStringfilename=QFileDialog::getOpenFileName(this,"OpenDocument",QDir::
currentPath
juneman
·
2020-08-16 06:00
QT
Qt 相对路径 绝对路径
绝对路径:app.applicationDirPath():这个获取的就是一个绝对路径,是程序运行时的绝对路径,如果是debug模式,绝对路径定位到debug文件QDir::
currentPath
();
weixin_30731287
·
2020-08-15 08:49
QT 当前路径
通过百度,发现了得到当前路径的方法,语句如下1QStringpath=QDir::
currentPath
();2qDebug()<
weixin_30266829
·
2020-08-15 08:22
QT-相对路径/工程当前路径问题
最开始以为exe文件所在的目录是当前路径,后面发现并不是这样的,然后用qDebug打印出当前目录#includeqDebug()<
currentPath();打印的调试信息如下"F:/Qt
Coar
·
2020-08-12 16:26
上一页
1
2
3
4
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他