awesome-go/impl/files-manipulation/02-TruncateFile.go

25 lines
568 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
"log"
"os"
)
func main() {
/*
Dosyayı Kes (Truncate a File)
Bir dosya 100 byte'a kesilmelidir.
Eğer dosya 100 byte'tan az ise içerik kalır, geri kalan kısım boş byte ile dolacaktır.
Eğer dosya 100 byte'ın üzerinde ise 100 byte'tan sonraki herşey kaybolur.
Her iki durumda da kesme işlemi 100 byte üzerinden gerçekleştirilmelidir.
Eğer kesilecek dosya boş ise sıfır değeri kullanılır.
*/
err := os.Truncate("demo.txt", 100)
if err != nil {
log.Fatal(err)
}
}