Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yzhong52/search_files

Return a list of files under a specific directory as an vector of strings
https://github.com/yzhong52/search_files

Last synced: 2 days ago
JSON representation

Return a list of files under a specific directory as an vector of strings

Awesome Lists containing this project

README

        

Search_Files
============

Return a list of file names under a specific directory.

This function only works under Windows.

Sample Usage
============
Example 1

vector file_name_w = search_file_w(L"*.bmp");

Example 2

vector file_name = search_file_w(L"images/*.bmp");

Example 3

vector file_name = search_file("*.bmp");

Example 4

vector file_name = search_file("images/*.bmp");