Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yzhong52/search_files
- Owner: yzhong52
- Created: 2013-10-28T13:24:34.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-09T14:48:42.000Z (over 10 years ago)
- Last Synced: 2023-08-05T01:02:27.408Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 1vector 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");