mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-14 16:42:23 +00:00
23 lines
312 B
Go
23 lines
312 B
Go
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!
|
||
}
|