/* This file is part of LilyPond, the GNU music typesetter. Copyright (C) 1997--2015 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. LilyPond is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with LilyPond. If not, see . */ #ifndef FILE_PATH_HH #define FILE_PATH_HH #include "std-vector.hh" #include "std-string.hh" /** search in directories for a file. Abstraction of PATH variable. An interface for searching input files. Search a number of dirs for a file. TODO: add a unix style PATH interface */ class File_path { vector dirs_; public: vector directories () const; string find (const string &name) const; string find (const string &name, char const *extensions[]); string to_string () const; bool try_append (string str); void append (const string&); void parse_path (const string&); void prepend (const string&); }; bool is_file (const string &file_name); bool is_dir (string file_name); #endif /* FILE_PATH */