97 std::list<std::string> dirlist;
99#if defined (OCTAVE_USE_WINDOWS_API)
100 WIN32_FIND_DATAW find_file_data;
102 std::string file_name;
104 HANDLE h_find_file = FindFirstFileW (pattern.c_str (), &find_file_data);
105 if (h_find_file != INVALID_HANDLE_VALUE)
110 dirlist.push_back (file_name);
112 while (FindNextFileW (h_find_file, &find_file_data));
114 FindClose (h_find_file);
120 dirlist.push_back (fname);
static unsigned int max_name_length()
bool open(const std::string &="")