删除文件夹
(folder string)
| 57 | |
| 58 | //删除文件夹 |
| 59 | func (this *Local) DelFromFolder(folder string) (err error) { |
| 60 | return os.RemoveAll(folder) |
| 61 | } |
| 62 | |
| 63 | func (this *Local) CopyFile(sourceFile, targetFile string) (err error) { |
| 64 |
no outgoing calls
no test coverage detected