(filePath string, content string)
| 96 | } |
| 97 | |
| 98 | func (fs *fileOperation) CreateOrOverWrite(filePath string, content string) error { |
| 99 | return writeToFile(filePath, content, true) |
| 100 | } |
| 101 | |
| 102 | // fileName:文件名字(带全路径) |
| 103 | // content: 写入的内容 |
no test coverage detected