getPartialFilePath returns the path of the partial file
(targetDir, filename string, id, procs int)
| 15 | |
| 16 | // getPartialFilePath returns the path of the partial file |
| 17 | func getPartialFilePath(targetDir, filename string, id, procs int) string { |
| 18 | return filepath.Join( |
| 19 | targetDir, |
| 20 | fmt.Sprintf("%s.%d.%d", filename, procs, id), |
| 21 | ) |
| 22 | } |
| 23 | |
| 24 | // checkProgress In order to confirm the degree of progress |
| 25 | func checkProgress(dirname string) (int64, error) { |
no outgoing calls
no test coverage detected