awesome-go/impl/files-manipulation/04-RenameFile.go

23 lines
312 B
Go
Raw Normal View History

package main
import (
"log"
"os"
)
func main() {
/*
Yeniden İsimlendirme ve Taşıma (Rename and Move a File)
*/
originalPath := "demo.txt"
newPath := "test.txt"
err := os.Rename(originalPath, newPath)
if err != nil {
log.Fatal(err)
}
// Taşıma işlemini de Rename() ile yapmayı dene!
}