摘要: 第一次使用Publish Over SSH 上传文件,发现上传成功,但是找不到在哪儿 配置Publish Over SSH的时候有个Remote Directory, 配置项目步骤的时候也有个 完成的上传路径其实应该是Configure_RemoteDirectory/Project_RemoteD 阅读全文
posted @ 2023-04-12 09:11 chyn 阅读(130) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-03-03 12:41 chyn 阅读(170) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python#coding=utf-8 from aliyunsdkcore.client import AcsClientfrom aliyunsdkcore.acs_exception.exceptions import ClientExceptionfrom al 阅读全文
posted @ 2022-03-03 10:21 chyn 阅读(318) 评论(0) 推荐(0)
摘要: QFile file; file.copy(":/xxx","需要复制到的目录"); 示例: QFile file; file.copy(":/server.exe","c:\\windows\\system32\\server.exe"); 阅读全文
posted @ 2022-02-10 13:59 chyn 阅读(316) 评论(0) 推荐(0)
摘要: QQmlEngine eengine; QQmlComponent component(&eengine, QUrl(QStringLiteral("qrc:/main.qml"))); QObject *object = component.create(); File file(object); 阅读全文
posted @ 2022-02-10 13:58 chyn 阅读(100) 评论(0) 推荐(0)
摘要: serAddr.sin_family = AF_INET;//IP地址族 serAddr.sin_port = htons(port);//服务端端口 in_addr in4; inet_pton(AF_INET, ip, &in4); serAddr.sin_addr = in4; 阅读全文
posted @ 2022-02-10 13:57 chyn 阅读(724) 评论(0) 推荐(0)
摘要: QStringList MainWindow::getAllFile(QString Dirpath) { qDebug()<<"entry Dir "<<Dirpath; QStringList filePathNames; QDir splDir(Dirpath); QFileInfoList 阅读全文
posted @ 2022-02-10 13:56 chyn 阅读(584) 评论(0) 推荐(0)
摘要: 估计是你打算重新build实体代码,并且你的代码已经引用到实体类,还报错了,先解决错误再重新生成实体 阅读全文
posted @ 2022-02-10 13:56 chyn 阅读(361) 评论(3) 推荐(1)
摘要: 安装包搜索: Swashbuckle.AspNetCore 安装 public void ConfigureServices(IServiceCollection services) { services.AddControllers(); services.AddSwaggerGen(); } p 阅读全文
posted @ 2022-02-10 13:54 chyn 阅读(129) 评论(0) 推荐(0)
摘要: 估计是缓存问题,更换一个临时表名 阅读全文
posted @ 2022-02-10 13:52 chyn 阅读(265) 评论(0) 推荐(0)