Added !if /FileExists

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6170 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2011-11-13 15:34:43 +00:00
parent a37905cc0c
commit 20dcb1923a
4 changed files with 37 additions and 2 deletions

View file

@ -33,6 +33,10 @@ public:
virtual const std::set<tstring>& files();
virtual const std::set<tstring>& dirs();
// dir_reader always excludes . and .. AND the exclude list is private,
// use this backdoor if you need to match "."
virtual std::set<tstring>& hack_simpleexcluded() {return m_excluded;}
virtual void exclude(const tstring& spec);
virtual void exclude(const std::set<tstring>& specs);