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
+30.7k Golang : Calculate percentage change of two values
+17k Golang : How to tell if a file is compressed either gzip or zip ?
+35.9k Golang : How to split or chunking a file to smaller pieces?
+21.6k Golang : Use TLS version 1.2 and enforce server security configuration over client
+24.3k Golang : Change file read or write permission example
+14.3k Golang : GUI with Qt and OpenCV to capture image from camera
+5.3k Python : Print unicode escape characters and string
+19.6k Golang : Append content to a file
+6.7k Golang : Normalize email to prevent multiple signups example
+9.2k Golang : Create unique title slugs example
+14.2k Golang : How to check if your program is running in a terminal
+11.5k Golang : convert(cast) float to string