-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileInfo.go
93 lines (69 loc) · 1.5 KB
/
fileInfo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package main
import (
"fmt"
"io/fs"
"log"
"os"
"path/filepath"
"time"
"github.com/rivo/tview"
)
type fileInfo struct {
path string
name string
isDir bool
modtime time.Time
size int64
parentNode *tview.TreeNode
}
func (f *fileInfo) fullPath() string {
return filepath.Join(f.path, f.name)
}
func (f *fileInfo) getParentDir() string {
return filepath.Base(f.path)
}
func (f *fileInfo) deleteReferenceFile() {
if f.isDir {
deleteDir(f.fullPath())
} else {
deleteFile(f.fullPath())
}
}
func newFileInfo(file fs.DirEntry, dirPath string, parentNode *tview.TreeNode) *fileInfo {
info, err := file.Info()
if err != nil {
log.Fatalf("Error getting file info: %v", err)
}
return &fileInfo{
path: dirPath,
name: file.Name(),
isDir: file.IsDir(),
size: info.Size(),
modtime: info.ModTime(),
parentNode: parentNode,
}
}
func renameFile(oldFileName string, newFileName string, oldPath string, newPath string) {
if oldFileName != newFileName {
oldFilePath := filepath.Join(oldPath, oldFileName)
newFilePath := filepath.Join(newPath, newFileName)
err := os.Rename(oldFilePath, newFilePath)
if err != nil {
log.Fatalf("Error renaming file: %v", err)
}
}
}
func deleteFile(path string) {
err := os.Remove(path)
if err != nil {
fmt.Println("Error deleting file:", err)
return
}
}
func deleteDir(path string) {
err := os.RemoveAll(path)
if err != nil {
fmt.Println("Error deleting directory:", err)
return
}
}