1 Star 4 Fork 6

morixinguan/HTYFileManager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
sonichy 提交于 2019-06-03 19:50 . 增加:隐藏分区
#include "mainwindow.h"
#include <QApplication>
#include <QDateTime>
// 日志
void writeLog(QString s){
QDateTime currentDateTime = QDateTime::currentDateTime();
s = "[" + currentDateTime.toString("yyyy/MM/dd HH:mm:ss") + "] " + s + "\n";
QFile file(QApplication::applicationDirPath() + "/log.txt");
if (file.open(QFile::WriteOnly | QIODevice::Append)) {
file.write(s.toUtf8());
file.close();
}
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setOrganizationName("HTY");
a.setApplicationName("HTYFileManager");
qSetMessagePattern("[ %{file}: %{line} ] %{message}");
QString log = "";
for(int i=0; i<argc; i++){
log += " " + QString::fromLocal8Bit(argv[i]);
}
writeLog(log);
MainWindow w;
w.show();
return a.exec();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/morixinguan/HTYFileManager.git
git@gitee.com:morixinguan/HTYFileManager.git
morixinguan
HTYFileManager
HTYFileManager
master

搜索帮助