()
| 131 | } |
| 132 | |
| 133 | func ExecOpFile() { |
| 134 | len := len(OpStrArr) |
| 135 | if len == 0 { |
| 136 | return |
| 137 | } |
| 138 | if len > 1 { |
| 139 | len = 1 |
| 140 | } |
| 141 | for i := 0; i < len; i++ { |
| 142 | go FileOperate(OpStrArr[i]) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | // file move or copy and send notify |
| 147 | func CheckFileStatus() { |
no test coverage detected