-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilesystem.go
845 lines (787 loc) · 22.7 KB
/
filesystem.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
package filesystem
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"regexp"
"runtime"
"strings"
"time"
)
type fileInstanceType struct {
fileDescriptor *os.File
}
/*
GetFileInstance allows you to obtain a file instance to work on.
*/
func GetFileInstance() fileInstanceType {
var fileInstance fileInstanceType
return fileInstance
}
/*
Open allows you to access a file on the file system in the open state.
*/
func (shared *fileInstanceType) Open(fileName string, permissions int) error {
if permissions == 0 {
permissions = 0744
}
perm := os.FileMode(uint32(permissions))
file, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_APPEND, perm)
if err != nil {
return err
}
shared.fileDescriptor = file
return err
}
/*
Close allows you to close a file which has already been opened.
*/
func (shared *fileInstanceType) Close() {
if shared.fileDescriptor == nil {
panic("There is no open file to close.")
}
shared.fileDescriptor.Close()
}
/*
WriteBytes allows you to add an arbitrary number of bytes to an open file.
*/
func (shared *fileInstanceType) WriteBytes(bytes []byte) error {
if shared.fileDescriptor == nil {
panic("There is no open file for writing bytes to.")
}
_, err := shared.fileDescriptor.Write(bytes)
return err
}
/*
WriteLine allows you to add string data to an open file as a line. A newline
identifier will automatically be added to your string.
*/
func (shared *fileInstanceType) WriteLine(lineToWrite string) error {
if shared.fileDescriptor == nil {
panic("There is no open file for writing lines to.")
}
err := shared.WriteString(lineToWrite + "\n")
return err
}
/*
WriteString allows you to add string data to an open file.
*/
func (shared *fileInstanceType) WriteString(stringToWrite string) error {
if shared.fileDescriptor == nil {
panic("There is no open file for writing strings to.")
}
_, err := shared.fileDescriptor.WriteString(stringToWrite)
return err
}
/*
GetFileContents allows you to get the entire file contents.
*/
func (shared *fileInstanceType) GetFileContents() ([]byte, error) {
if shared.fileDescriptor == nil {
panic("There is no open file for reading with.")
}
fileInfo, err := shared.fileDescriptor.Stat()
if err != nil {
return nil, err
}
buffer := make([]byte, fileInfo.Size())
_, err = shared.fileDescriptor.ReadAt(buffer, 0)
if err != nil {
return nil, err
}
formattedBuffer := bytes.TrimRight(buffer, "\n")
return formattedBuffer, err
}
/*
GetFirstLine allows you to get the first line from a text file.
*/
func (shared *fileInstanceType) GetFirstLine() ([]byte, error) {
fileInfo, err := shared.fileDescriptor.Stat()
if err != nil {
return nil, err
}
_, err = shared.fileDescriptor.Seek(0, io.SeekStart)
if err != nil {
return nil, err
}
buffer := bytes.NewBuffer(make([]byte, 0, fileInfo.Size()))
_, err = io.Copy(buffer, shared.fileDescriptor)
if err != nil {
return nil, err
}
firstLine, err := buffer.ReadBytes('\n')
if err != nil && err != io.EOF {
return nil, err
}
_, err = shared.fileDescriptor.Seek(0, io.SeekStart)
if err != nil {
return nil, err
}
return firstLine[:len(firstLine)-1], err // Remove trailing delimiter "\n"
}
/*
RemoveFirstLine allows you to remove the first line from a text file.
*/
func (shared *fileInstanceType) RemoveFirstLine() error {
fileInfo, err := shared.fileDescriptor.Stat()
if err != nil {
return err
}
_, err = shared.fileDescriptor.Seek(0, io.SeekStart)
if err != nil {
return err
}
buffer := bytes.NewBuffer(make([]byte, 0, fileInfo.Size()))
_, err = io.Copy(buffer, shared.fileDescriptor)
if err != nil {
return err
}
_, err = buffer.ReadBytes('\n')
if err != nil && err != io.EOF {
return err
}
err = shared.fileDescriptor.Truncate(0)
if err != nil {
return err
}
_, err = shared.fileDescriptor.Seek(0, io.SeekStart)
if err != nil {
return err
}
_, err = io.Copy(shared.fileDescriptor, buffer)
if err != nil {
return err
}
err = shared.fileDescriptor.Sync()
if err != nil {
return err
}
_, err = shared.fileDescriptor.Seek(0, io.SeekStart)
if err != nil {
return err
}
return nil
}
/*
GetDefaultCacheDirectory allows you to obtain the cache directory of a user.
The cache directory is useful for storing program data that needs to
be accessed frequently, but is not terribly important in case it has to be
regenerated.
*/
func GetDefaultCacheDirectory() (string, error) {
userHomeDir, err := os.UserHomeDir()
if err != nil {
return "", fmt.Errorf("could not get user home directory: %v", err)
}
switch runtime.GOOS {
case "linux":
return filepath.Join(userHomeDir, ".cache"), nil
case "windows":
return filepath.Join(userHomeDir, "AppData", "Local"), nil
case "darwin":
return filepath.Join(userHomeDir, "Library", "Caches"), nil
}
return "", errors.New("could not determine cache directory")
}
/*
IsFileContainsText allows you to check if a file contains a matching string or not. Since this method loads the entire
contents of a file into memory, it should only be used for smaller files.
*/
func IsFileContainsText(filename string, regexMatcher string) (bool, error) {
fileContents, err := ioutil.ReadFile(filename)
if err != nil {
return false, err
}
regex := regexp.MustCompile(regexMatcher)
match := regex.Find(fileContents)
if len(match) > 0 {
return true, err
}
return false, err
}
/*
FindReplaceInFile allows you to find and replace text from within a file. Since this method loads the entire
contents of a file into memory, it should only be used for smaller files.
*/
func FindReplaceInFile(filename string, regexMatcher string, replacementValue string) error {
fileContents, err := ioutil.ReadFile(filename)
if err != nil {
return err
}
fileContentString := string(fileContents)
lines := strings.Split(fileContentString, "\n")
regex := regexp.MustCompile(regexMatcher)
for i, line := range lines {
lines[i] = regex.ReplaceAllString(line, replacementValue)
}
newContents := []byte(strings.Join(lines, "\n"))
err = ioutil.WriteFile(filename, newContents, 0)
if err != nil {
return err
}
return nil
}
/*
GetLastLineFromFile allows you to obtain the last line from a file.
*/
func GetLastLineFromFile(fileName string) (string, error) {
fileContents, err := GetFileContents(fileName)
if err != nil {
return "", err
}
arrayOfLines := strings.Split(string(fileContents), "\n")
return arrayOfLines[len(arrayOfLines)-1], err
}
/*
GetFileContents allows you to get the entire contents of a file.
*/
func GetFileContents(fileName string) ([]byte, error) {
file := GetFileInstance()
err := file.Open(fileName, 0)
if err != nil {
return nil, err
}
fileContents, err := file.GetFileContents()
if err != nil {
return nil, err
}
file.Close()
return fileContents, err
}
/*
RemoveFirstLineFromFile allows you to remove the first line from a file.
*/
func RemoveFirstLineFromFile(fileName string) error {
file := GetFileInstance()
err := file.Open(fileName, 0)
if err != nil {
return err
}
err = file.RemoveFirstLine()
if err != nil {
return err
}
file.Close()
return err
}
/*
*
DownloadFile allows you to download a file from the internet to your local.com file
system.
*/
func DownloadFile(url string, filepath string, header http.Header) error {
client := &http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return err
}
if header == nil {
// Here we provide a fake 'user-agent' value so that our request looks like it's from a browser.
req.Header.Set("User-Agent", "Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0")
} else {
req.Header = header
}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
out, err := os.Create(filepath)
if err != nil {
return err
}
defer out.Close()
_, err = io.Copy(out, resp.Body)
return err
}
/*
*
CopyFile allows you to copy a file from one source location to a target
destination location. In the event the operation could not be completed,
an error is returned to the user.
*/
func CopyFile(sourceFile string, destinationFile string) error {
sourceFileStat, err := os.Stat(sourceFile)
if err != nil {
return err
}
if !sourceFileStat.Mode().IsRegular() {
return fmt.Errorf("%s is not a regular file.", sourceFile)
}
source, err := os.Open(sourceFile)
defer source.Close()
if err != nil {
return err
}
destination, err := os.Create(destinationFile)
if err != nil {
return err
}
defer destination.Close()
_, err = io.Copy(destination, source)
return err
}
/*
*
WriteBytesToFile allows you to write a series of bytes to a given file.
In addition, the following information should be noted:
- In the event the file does not already exist, it will be created for you
with the permission attributes provided.
- If you pass in a permissions value of '0', the default value of 744 will
be used instead.
*/
func WriteBytesToFile(fileName string, bytesToWrite []byte, permissions int) error {
if permissions == 0 {
permissions = 0744
}
perm := os.FileMode(uint32(permissions))
err := ioutil.WriteFile(fileName, bytesToWrite, perm)
return err
}
/*
*
GetFileContentsAsBytes allows you to get the contents of a file as a byte
array.
*/
func GetFileContentsAsBytes(fileName string) ([]byte, error) {
var fileContents []byte
var err error
fileContents, err = ioutil.ReadFile(fileName)
if err != nil {
return fileContents, err
}
return fileContents, err
}
/*
*
AppendLineToFile allows you to append a line to the end of a file.
In addition, the following information should be noted:
- In the event the file does not already exist, it will be created for you
with the permission attributes provided.
- If you pass in a permissions value of '0', the default value of 744 will
be used instead.
*/
func AppendLineToFile(fileName string, lineToWrite string, permissions int) error {
if permissions == 0 {
permissions = 0744
}
perm := os.FileMode(uint32(permissions))
file, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_APPEND, perm)
defer file.Close()
file.WriteString(lineToWrite)
return err
}
/*
*
GetListOfFiles allows you to obtain a list of files that match a given regular
expression.
*/
func GetListOfFiles(directoryPath string, regexMatcher string) ([]string, error) {
return GetListOfDirectoryContents(directoryPath, []string{regexMatcher}, true, false)
}
/*
*
GetListOfDirectories allows you to obtain a list of files that match a given
regular expression.
*/
func GetListOfDirectories(directoryPath string, regexMatcher string) ([]string, error) {
return GetListOfDirectoryContents(directoryPath, []string{regexMatcher}, false, true)
}
/*
IsDirectory allows you to check if a disk entry is a directory or not.
*/
func IsDirectory(directoryPath string) bool {
file, err := os.Open(directoryPath)
defer file.Close()
if err != nil {
return false
}
fileInfo, err := file.Stat()
if fileInfo.IsDir() {
return true
}
return false
}
/*
*
GetListOfDirectoryContents allows you to obtain a list of files and directories
that match a given regular expression.
*/
func GetListOfDirectoryContents(directoryPath string, regexMatchers []string, isFilesIncluded bool, isDirectoriesIncluded bool) ([]string, error) {
var fileList []string
bareDirectoryPath := GetBareDirectoryPath(directoryPath)
files, err := ioutil.ReadDir(bareDirectoryPath)
if err != nil {
return fileList, err
}
for _, file := range files {
for _, currentRegex := range regexMatchers {
regex := regexp.MustCompile(currentRegex)
match := regex.FindStringSubmatch(file.Name())
if len(match) > 0 {
if file.IsDir() && isDirectoriesIncluded {
fileList = append(fileList, file.Name()+"/")
break
}
if !file.IsDir() && isFilesIncluded {
fileList = append(fileList, file.Name())
break
}
}
}
}
return fileList, err
}
/*
*
FindMatchingContent allows you to find matching content from a given directory
path. Both shallow and recursive searches are supported and results are
returned as a fully qualified path.
*/
func FindMatchingContent(directoryPath string, regexMatchers []string, isFilesIncluded bool, isDirectoriesIncluded bool, isRecursive bool) ([]string, error) {
var err error
var listOfContents []string
if isRecursive {
err = filepath.Walk(directoryPath,
func(path string, fileInfo os.FileInfo, err error) error {
if err != nil {
return err
}
if !IsDirectory(path) {
return nil
}
normalizedPath := GetNormalizedDirectoryPath(path)
matchingContents, err := GetListOfDirectoryContents(normalizedPath, regexMatchers, isFilesIncluded, isDirectoriesIncluded)
if err != nil {
return err
}
matchingContents = addPrefixToStrings(normalizedPath, matchingContents)
listOfContents = append(listOfContents, matchingContents...)
return nil
})
} else {
matchingContent, err := GetListOfDirectoryContents(directoryPath, regexMatchers, isFilesIncluded, isDirectoriesIncluded)
if err != nil {
return listOfContents, err
}
normalizedPath := GetNormalizedDirectoryPath(directoryPath)
listOfContents = addPrefixToStrings(normalizedPath, matchingContent)
}
return listOfContents, err
}
/*
*
addPrefixToStrings allows you to append a prefix to an array of strings.
*/
func addPrefixToStrings(prefixToAdd string, stringArray []string) []string {
for currentStringIndex := 0; currentStringIndex < len(stringArray); currentStringIndex++ {
stringArray[currentStringIndex] = prefixToAdd + stringArray[currentStringIndex]
}
return stringArray
}
/*
*
GetNormalizedDirectoryPath allows you to guarantee that a directory path
is always formatted with a trailing slash at the end. This is useful when
you need to work with paths in predictable and consistent manner.
*/
func GetNormalizedDirectoryPath(directoryPath string) string {
normalizedDirectoryPath := directoryPath
if !strings.HasSuffix(directoryPath, "/") && !strings.HasSuffix(directoryPath, "\\") {
normalizedDirectoryPath = normalizedDirectoryPath + "/"
}
return normalizedDirectoryPath
}
/*
GetBareDirectoryPath allows you to get a directory path without a trailing
slash. This is useful for functions which explicitly need directories
formatted this way.
*/
func GetBareDirectoryPath(directoryPath string) string {
bareDirectoryPath := directoryPath
if strings.HasSuffix(directoryPath, "/") || strings.HasSuffix(directoryPath, "\\") {
bareDirectoryPath = strings.TrimSuffix(directoryPath, "/")
bareDirectoryPath = strings.TrimSuffix(bareDirectoryPath, "\\")
}
return bareDirectoryPath
}
/*
*
IsDirectoryEmpty allows you to detect if a directory is empty or not.
*/
func IsDirectoryEmpty(directoryName string) (bool, error) {
file, err := os.Open(directoryName)
defer file.Close()
if err != nil {
return false, err
}
_, err = file.Readdirnames(1)
if err == io.EOF {
return true, nil
}
return false, err
}
/*
*
GetFileSize allows you to obtain the size of a specified file in bytes.
*/
func GetFileSize(fileName string) (int64, error) {
var fileSize int64
file, err := os.Stat(fileName)
if err != nil {
return fileSize, err
}
fileSize = file.Size()
return fileSize, err
}
/*
*
GetWorkingDirectory allows you to obtain the current working directory
where your program is executing.
*/
func GetWorkingDirectory() (string, error) {
var parent string
workingDirectory, err := os.Getwd()
if err != nil {
return parent, err
}
parent = filepath.Dir(workingDirectory)
return parent, err
}
/*
*
GetParentDirectory allows you to obtain the container directory of
your provided path. This will be everything except the last element
of your path.
*/
func GetParentDirectory(fileOrDirectoryPath string) string {
normalizedDirectory := fileOrDirectoryPath
if strings.HasSuffix(fileOrDirectoryPath, "/") || strings.HasSuffix(fileOrDirectoryPath, "\\") {
normalizedDirectory = normalizedDirectory[:len(normalizedDirectory)-1]
}
parentDirectory := filepath.Dir(normalizedDirectory)
return parentDirectory
}
/*
*
RenameFile allows you to rename a file on your local.com file system. In the event
that a file with the same name already exists, it will be overwritten. Here we
explicitly do the delete so we don't depend on the 'os.Rename' behaviour of
overwriting files which may be environment dependant.
*/
func RenameFile(sourceFileName string, targetFileName string) error {
var err error
bareSourceFileName := GetBareDirectoryPath(sourceFileName)
bareTargetFileName := GetBareDirectoryPath(targetFileName)
if bareSourceFileName == bareTargetFileName {
return err
}
// Since Windows is case insensitive we check if the names are identical, we
// give the file a temporary name before we request to rename it properly.
if runtime.GOOS == "windows" && strings.ToLower(bareSourceFileName) == strings.ToLower(bareTargetFileName) {
err = os.Rename(bareSourceFileName, bareTargetFileName+".tmp")
if err != nil {
return err
}
err = os.Rename(bareTargetFileName+".tmp", bareTargetFileName)
return err
}
// This needs to be here to avoid deleting target files on Windows before a case-insensitive check is done.
if IsFileExists(bareTargetFileName) {
DeleteFile(bareTargetFileName)
}
err = os.Rename(bareSourceFileName, bareTargetFileName)
return err
}
/*
*
IsDirectoryExists allows you to check if a directory exists or not on the file
system.
*/
func IsDirectoryExists(directoryPath string) bool {
return isDiskEntryExists(directoryPath)
}
/*
*
IsFileExists allows you to check if a file exists or not on the file system.
*/
func IsFileExists(filePath string) bool {
return isDiskEntryExists(filePath)
}
/*
*
isDiskEntryExists allows you to check if a valid disk entry exists on the
file system.
*/
func isDiskEntryExists(path string) bool {
_, err := os.Stat(path)
if os.IsNotExist(err) {
return false
}
return true
}
func GetAbsolutePath(filePath string) (string, error) {
absPath, err := filepath.Abs(filePath)
if err != nil {
return "", err
}
return absPath, nil
}
/*
*
DeleteFile allows you to delete a file on the file system.
*/
func DeleteFile(fileName string) error {
err := os.Remove(fileName)
return err
}
/*
*
DeleteFilesMatchingPattern allows you to delete files matching a specific
pattern. Pattern syntax is the same as the 'Match' command.
*/
func DeleteFilesMatchingPattern(fileName string) error {
files, err := filepath.Glob(fileName)
if err != nil {
return err
}
for _, f := range files {
if err := os.Remove(f); err != nil {
return err
}
}
return err
}
/*
DeleteDirectory allows you to recursively remove a directory from the file
system.
*/
func DeleteDirectory(pathName string) error {
err := os.RemoveAll(pathName)
return err
}
/*
*
MoveFile allows you to move a file from one location to another. This method
is an alias which simply performs a rename command, which is capable of doing
the same action.
*/
func MoveFile(sourceFile string, destinationFile string) error {
// Since windows is case-insensitive, it is valid if the user wants to rename / move a file to the
// same location, since he is just trying to change case. So we only error out if this edge-case is not detected.
if runtime.GOOS != "windows" && sourceFile != destinationFile && IsFileExists(destinationFile) {
return errors.New(fmt.Sprintf("Cannot move '%s' to the destination location since '%s' already exists .", sourceFile, destinationFile))
}
if runtime.GOOS == "windows" && strings.ToLower(sourceFile) != strings.ToLower(destinationFile) && IsFileExists(destinationFile) {
return errors.New(fmt.Sprintf("Cannot move '%s' to the destination location since '%s' already exists .", sourceFile, destinationFile))
}
now := time.Now()
uniqueId := fmt.Sprintf("%d", now.Unix())
uniqueFileName := destinationFile + "_" + uniqueId
err := RenameFile(sourceFile, uniqueFileName)
if err != nil {
return err
}
err = RenameFile(uniqueFileName, destinationFile)
return err
}
func MoveDirectories(sourceDir string, destinationDir string) error {
normalizedSourceDirectory := strings.TrimRight(sourceDir, "\\/")
normalizedDestinationDirectory := strings.TrimRight(destinationDir, "\\/")
if runtime.GOOS != "windows" && sourceDir != destinationDir && IsDirectoryExists(destinationDir) {
return errors.New(fmt.Sprintf("Cannot move '%s' to the destination location since '%s' already exists.", sourceDir, destinationDir))
}
if runtime.GOOS == "windows" && strings.ToLower(sourceDir) != strings.ToLower(destinationDir) && IsDirectoryExists(destinationDir) {
return errors.New(fmt.Sprintf("Cannot move '%s' to the destination location since '%s' already exists.", sourceDir, destinationDir))
}
now := time.Now()
uniqueId := fmt.Sprintf("%d", now.Unix())
uniqueDirName := normalizedDestinationDirectory + "_" + uniqueId
err := os.Rename(normalizedSourceDirectory, uniqueDirName)
if err != nil {
return err
}
err = os.Rename(uniqueDirName, normalizedDestinationDirectory)
return err
}
/*
CreateDirectory allows you to create a directory on your local file system.
*/
func CreateDirectory(directoryPath string, permissions uint32) error {
if permissions == 0 {
permissions = 0744
}
perm := os.FileMode(permissions)
err := os.MkdirAll(directoryPath, perm)
return err
}
/*
GetFileExtension allows you to get the file extension of a file.
*/
func GetFileExtension(fileName string) string {
extension := filepath.Ext(fileName)
return extension
}
/*
GetBaseFileName allows you to extract the base name of a file without any path or
file extensions.
*/
func GetBaseFileName(fileName string) string {
bareFileName := GetBareDirectoryPath(fileName)
normalizedFileName := GetFileNameFromPath(bareFileName)
return strings.TrimSuffix(normalizedFileName, filepath.Ext(normalizedFileName))
}
/*
GetBaseDirectory allows you to extract the directory from a file path.
*/
func GetBaseDirectory(filePath string) string {
bareFilePath := GetBareDirectoryPath(filePath)
directory, _ := filepath.Split(bareFilePath)
return directory
}
/*
GetCurrentDirectory allows you to obtain the current directory from a fully
qualified directory path.
*/
func GetCurrentDirectory(directoryPath string) string {
basePath := GetBaseDirectory(directoryPath)
currentDirectory := strings.ReplaceAll(directoryPath, basePath, "")
return currentDirectory
}
/*
GetFileNameFromPath allows you to extract a file name from a fully qualified file path.
*/
func GetFileNameFromPath(fullyQualifiedFileName string) string {
return filepath.Base(fullyQualifiedFileName)
}
/*
IsFile allows you to check if an item on the file system is a file or not.
*/
func IsFile(path string) (bool, error) {
var isFile bool
fi, err := os.Stat(path)
if err != nil {
return isFile, err
}
mode := fi.Mode()
if mode.IsRegular() {
isFile = true
}
return isFile, err
}
/*
GetAbsolutePathToExecutableLocation allows you to obtain an absolute path to your currently running executable.
*/
func GetAbsolutePathToExecutableLocation() (string, error) {
executablePath, err := os.Executable()
if err != nil {
return "", err
}
executableDir := filepath.Dir(executablePath)
return executableDir, nil
}