Skip to content

Commit

Permalink
更新说明
Browse files Browse the repository at this point in the history
  • Loading branch information
feiyangqingyun committed Aug 9, 2024
1 parent 54ef56c commit f12f71a
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion control/savelog/savelog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ void SaveLog::save(const QString &content)
//目录不存在则先新建目录
QDir dir(path);
if (!dir.exists()) {
dir.mkdir(path);
dir.mkpath(path);
}

//日志存储规则有多种策略 优先级 行数>大小>日期
Expand Down
2 changes: 1 addition & 1 deletion control/saveruntime/saveruntime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void SaveRunTime::newPath()
//检查目录是否存在,不存在则先新建
QDir dir(path);
if (!dir.exists()) {
dir.mkdir(path);
dir.mkpath(path);
}
}

Expand Down
15 changes: 7 additions & 8 deletions docs/video_system/index.html

Large diffs are not rendered by default.

Binary file added docs/video_system/snap/13-1-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/4-1-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/4-2-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/4-3-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/4-4-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/video_system/snap/4-5-1.jpg
Binary file not shown.
Binary file modified docs/video_system/snap/6-7-0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/6-7-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/6-7-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/video_system/snap/6-7-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/video_system/snap/6-7-4.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion video/videowindow/videowindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ void VideoWindow::setSavePath(const QString &savePath)
//如果目录不存在则新建
QDir dir(savePath);
if (!dir.exists()) {
dir.mkdir(savePath);
dir.mkpath(savePath);
}
}

Expand Down

0 comments on commit f12f71a

Please sign in to comment.