8 lines
111 B
Go
8 lines
111 B
Go
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
if err := os.Truncate("filename", newSize); err != nil {
|
|
fmt.Println(err)
|
|
}
|