-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilei.go
204 lines (165 loc) · 4.02 KB
/
filei.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package filei
import (
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"os"
"strings"
)
// UploadFile saves an uploaded file to the specified path.
func UploadFile(file multipart.File, fileName string) error {
out, err := os.Create(fileName)
if err != nil {
return err
}
defer out.Close()
_, err = io.Copy(out, file)
if err != nil {
return err
}
return nil
}
// GetFile retrieve a file from the specified path.
func GetFile(fileName string) (multipart.File, error) {
file, err := os.Open(fileName)
if err != nil {
return nil, err
}
return file, nil
}
// DeleteFile removes a file from the specified path.
func DeleteFile(fileName string) error {
err := os.Remove(fileName)
if err != nil {
return err
}
return nil
}
// CreateFile create a new file from the specified path and data.
func CreateFile(filaName string, data []byte) error {
file, err := os.Create(filaName)
if err != nil {
return err
}
defer file.Close()
_, err = file.Write(data)
if err != nil {
return err
}
return nil
}
// Exists ensure that the file exists.
func Exists(fileName string) bool {
_, err := os.Stat(fileName)
if os.IsNotExist(err) {
return false
}
return true
}
// CleanDirectory clear the directory.
func CleanDirectory(directory string) bool {
data, _ := os.ReadDir(directory)
for _, file := range data {
err := os.Remove(directory + "/" + file.Name())
if err != nil {
continue
}
}
return true
}
// DeleteDirectory delete the directory.
func DeleteDirectory(directory string) error {
err := os.RemoveAll(directory)
if err != nil {
return err
}
return nil
}
// MoveFile move the file from one place to another place.
func MoveFile(sourcePath, destPath string) error {
inputFile, err := os.Open(sourcePath)
if err != nil {
return fmt.Errorf("couldn't open source file: %v", err)
}
defer inputFile.Close()
outputFile, err := os.Create(destPath)
if err != nil {
return fmt.Errorf("couldn't open dest file: %v", err)
}
defer outputFile.Close()
_, err = io.Copy(outputFile, inputFile)
if err != nil {
return fmt.Errorf("couldn't copy to dest from source: %v", err)
}
inputFile.Close()
err = os.Remove(sourcePath)
if err != nil {
return fmt.Errorf("couldn't remove source file: %v", err)
}
return nil
}
// Files get the list of files of a directory.
func Files(directoryPath string) ([]os.DirEntry, error) {
data, err := os.ReadDir(directoryPath)
if err != nil {
return nil, fmt.Errorf("couldn't read directory: %v", err)
}
return data, nil
}
// Size get the size of a file.
func Size(filePath string) (int64, error) {
data, err := os.Stat(filePath)
if err != nil {
return -1, fmt.Errorf("couldn't stat file: %v", err)
}
return data.Size(), nil
}
// Chmod give permission to a file.
func Chmod(filePath string, mode os.FileMode) error {
err := os.Chmod(filePath, mode)
if err != nil {
return fmt.Errorf("couldn't chmod file: %v", err)
}
return nil
}
// Prepend write to the beginning of a file.
func Prepend(filePath string, data string) error {
// Read the existing content of the file
content, err := ioutil.ReadFile(filePath)
if err != nil {
return err
}
// Combine new data with the existing content
newContent := []byte(data + string(content))
// Write the new content back to the file
err = ioutil.WriteFile(filePath, newContent, 0644)
if err != nil {
return err
}
return nil
}
// Append write to the end of a file.
func Append(filePath string, data string) error {
// Read the existing content of the file
content, err := ioutil.ReadFile(filePath)
if err != nil {
return err
}
// Convert content to string for easier manipulation
contentStr := string(content)
// Split content by lines to get the last line
lines := strings.Split(contentStr, "\n")
if len(lines) > 0 {
// Append data to the last line
lines[len(lines)-1] += data
}
// Join lines back into a single string
newContent := strings.Join(lines, "\n")
// Write the new content back to the file
err = ioutil.WriteFile(filePath, []byte(newContent), 0644)
if err != nil {
return err
}
return nil
}