Golang : Find files by extension
This is a filepath.Ext()
function example and it will only display files with .png
extension in the current directory. You can adapt the code for other purposes.
findfilesbyextension.go
package main
import (
"fmt"
"os"
"path/filepath"
)
func main() {
dirname := "." + string(filepath.Separator)
d, err := os.Open(dirname)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer d.Close()
files, err := d.Readdir(-1)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println("Reading "+ dirname)
for _, file := range files {
if file.Mode().IsRegular() {
if filepath.Ext(file.Name()) == ".png" {
fmt.Println(file.Name())
}
}
}
}
Put couple of .png
files into the same directory as this go program and try it out.
Reference :
http://stackoverflow.com/questions/20115327/golang-rename-the-directory-and-partial-file-renaming
See also : Golang : Delete files by extension
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.3k Golang : Encrypt and decrypt data with TripleDES
+5.2k Nginx : Password protect a directory/folder
+7.9k Golang : Web(Javascript) to server-side websocket example
+5.7k Swift : substringWithRange() function example
+10.7k Golang : 2 dimensional array example
+1.7k Golang : Switch Redis database redis.NewClient
+10k Golang : Byte format example
+39.8k Golang : Convert string to array/slice
+7.3k Golang : Find network service name from given port and protocol
+9.8k Golang : Fuzzy string search or approximate string matching example
+9.4k Golang : Intercept and process UNIX signals example
+20.4k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."