GetOutputPath returns the output path of the file.
()
| 121 | |
| 122 | // GetOutputPath returns the output path of the file. |
| 123 | func (f *File) GetOutputPath() string { |
| 124 | return path.Join("/tmp", f.info.Name()) |
| 125 | } |
| 126 | |
| 127 | // parseRangeHeader parses the Range header value and returns start and end positions. |
| 128 | func parseRangeHeader(rangeHeader string, fileSize int64) (start, end int64) { |
no test coverage detected